None
**Instruments Affected**: NIRCam
This is the validation notebook that displays the regression tests for the NIRCam instrument in the JWST calibration pipeline. This notebook runs and displays the regression tests that are performed as a part of the normal software continuous integration process. For more information on the pipeline visit the links below.
Pipeline description: https://jwst-pipeline.readthedocs.io/en/latest/index.html
Pipeline code: https://github.com/spacetelescope/jwst
JWST regression tests are located in the regtest folder of the pipeline within the GitHub repository.
These are terms or acronymns used in this notebook that may not be known a general audience.
JWST: James Webb Space Telescope
NIRCam: Near-Infrared Camera
Regression testing is a software testing method which checks if the pipeline step produces the expected outcome by comparing an input file with a truth file. Truth files for testing are stored in Artifactory.
Data used for regression tests is stored in Artifactory, and consists of a mix of simulated and ground testing data for the different instruments and modes.
import tempfile
import os
import pytest
import jwst
from IPython.display import IFrame
from IPython.core.display import HTML
Here we define any convenience functions to help with running the unit tests.
print("Testing JWST Pipeline {}".format(jwst.__version__))
jwst_dir = os.path.dirname(jwst.__file__)
regtest = os.path.join(jwst_dir, 'regtest')
associations = os.path.join(jwst_dir, 'associations')
datamodels = os.path.join(jwst_dir, 'datamodels')
stpipe = os.path.join(jwst_dir, 'stpipe')
with tempfile.TemporaryDirectory() as tmpdir:
outdir = os.path.join(tmpdir, 'regtest_report.html')
!pytest --bigdata {regtest} -k 'test_nircam' -v --ignore={associations} --ignore={datamodels} --ignore={stpipe} --html={outdir} --self-contained-html
with open(os.path.join(tmpdir, "regtest_report.html")) as report_file:
html_report = "".join(report_file.readlines())
Testing JWST Pipeline 0.18.3 ============================= test session starts ============================== platform linux -- Python 3.8.6, pytest-6.2.2, py-1.10.0, pluggy-0.13.1 -- /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/bin/python cachedir: .pytest_cache metadata: {'Python': '3.8.6', 'Platform': 'Linux-3.10.0-1160.11.1.el7.x86_64-x86_64-with-glibc2.10', 'Packages': {'pytest': '6.2.2', 'py': '1.10.0', 'pluggy': '0.13.1'}, 'Plugins': {'asdf': '2.7.2', 'metadata': '1.11.0', 'html': '3.1.1', 'forked': '1.3.0', 'xdist': '2.2.1', 'ci-watson': '0.5'}, 'BUILD_NUMBER': '64', 'BUILD_ID': '64', 'BUILD_URL': 'https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/64/', 'NODE_NAME': 'jwcalibdev.stsci.edu', 'JOB_NAME': 'Notebooks/jwst_validation_notebooks_spacetelescope', 'BUILD_TAG': 'jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-64', 'EXECUTOR_NUMBER': '26', 'JENKINS_URL': 'https://plwishmaster.stsci.edu:8081/', 'WORKSPACE': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope', 'GIT_COMMIT': '203f1829ac59802a2e672f7be3780a287570c752', 'GIT_URL': 'https://github.com/spacetelescope/jwst_validation_notebooks', 'GIT_BRANCH': 'origin/master'} rootdir: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope plugins: asdf-2.7.2, metadata-1.11.0, html-3.1.1, forked-1.3.0, xdist-2.2.1, ci-watson-0.5 collected 447 items / 399 deselected / 48 selected ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] FAILED [ 2%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] FAILED [ 4%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] FAILED [ 6%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] FAILED [ 8%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] FAILED [ 10%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] FAILED [ 12%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] FAILED [ 14%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] FAILED [ 16%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] FAILED [ 18%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] FAILED [ 20%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] FAILED [ 22%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] PASSED [ 25%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] PASSED [ 27%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] PASSED [ 29%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] PASSED [ 31%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] PASSED [ 33%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] PASSED [ 35%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] PASSED [ 37%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] PASSED [ 39%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] PASSED [ 41%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] PASSED [ 43%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] PASSED [ 45%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] PASSED [ 47%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs PASSED [ 50%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d FAILED [ 52%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog PASSED [ 54%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile FAILED [ 56%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED [ 58%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED [ 60%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] FAILED [ 62%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] FAILED [ 64%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] FAILED [ 66%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] FAILED [ 68%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] FAILED [ 70%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] FAILED [ 72%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] FAILED [ 75%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] FAILED [ 77%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints FAILED [ 79%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt PASSED [ 81%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing FAILED [ 83%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] FAILED [ 85%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] FAILED [ 87%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot PASSED [ 89%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing FAILED [ 91%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] FAILED [ 93%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] FAILED [ 95%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] FAILED [ 97%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] FAILED [100%] =================================== FAILURES =================================== __________________ test_nircam_coron3_sci_exp[00001-psfalign] __________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e86207310>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-02-12 01:46:00,931 - stpipe.Coron3Pipeline - INFO - Coron3Pipeline instance created. 2021-02-12 01:46:00,931 - stpipe.Coron3Pipeline.stack_refs - INFO - StackRefsStep instance created. 2021-02-12 01:46:00,932 - stpipe.Coron3Pipeline.align_refs - INFO - AlignRefsStep instance created. 2021-02-12 01:46:00,933 - stpipe.Coron3Pipeline.klip - INFO - KlipStep instance created. 2021-02-12 01:46:00,934 - stpipe.Coron3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:46:00,934 - stpipe.Coron3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:46:00,934 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:46:00,935 - stpipe - INFO - OS: Linux 2021-02-12 01:46:01,029 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). 2021-02-12 01:46:01,032 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:46:01,033 - stpipe.Coron3Pipeline - INFO - Starting calwebb_coron3 ... 2021-02-12 01:46:01,145 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,152 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,153 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,254 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,256 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,256 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,354 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,355 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,356 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,450 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,452 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,453 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,547 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,549 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,549 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,940 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). 2021-02-12 01:46:01,941 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:01,947 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-02-12 01:46:02,517 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-02-12 01:46:04,206 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits 2021-02-12 01:46:04,206 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:04,313 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). 2021-02-12 01:46:04,315 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:04,321 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-02-12 01:46:04,884 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-02-12 01:46:06,616 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits 2021-02-12 01:46:06,616 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:06,719 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). 2021-02-12 01:46:06,720 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:06,727 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-02-12 01:46:07,275 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-02-12 01:46:08,968 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits 2021-02-12 01:46:08,968 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:09,072 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs running with args (<ModelContainer>,). 2021-02-12 01:46:09,072 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} 2021-02-12 01:46:09,089 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 1 to output stack 2021-02-12 01:46:09,099 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 2 to output stack 2021-02-12 01:46:09,108 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 3 to output stack 2021-02-12 01:46:09,143 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs done 2021-02-12 01:46:09,211 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits 2021-02-12 01:46:09,394 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). 2021-02-12 01:46:09,395 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:09,401 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-02-12 01:46:09,507 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-02-12 01:46:09,783 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits 2021-02-12 01:46:09,783 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:09,875 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-02-12 01:46:09,876 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-02-12 01:46:09,882 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-02-12 01:46:46,048 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-02-12 01:46:46,269 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits 2021-02-12 01:46:46,381 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). 2021-02-12 01:46:46,382 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-02-12 01:46:46,388 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-02-12 01:46:46,845 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-02-12 01:46:46,919 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits 2021-02-12 01:46:47,231 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). 2021-02-12 01:46:47,232 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:47,239 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-02-12 01:46:47,345 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-02-12 01:46:47,622 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits 2021-02-12 01:46:47,622 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:47,720 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-02-12 01:46:47,720 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-02-12 01:46:47,727 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-02-12 01:47:23,848 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-02-12 01:47:24,059 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits 2021-02-12 01:47:24,184 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). 2021-02-12 01:47:24,184 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-02-12 01:47:24,191 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-02-12 01:47:24,634 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-02-12 01:47:24,708 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits 2021-02-12 01:47:24,925 - stpipe.Coron3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:47:24,926 - stpipe.Coron3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} 2021-02-12 01:47:24,936 - stpipe.Coron3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:47:25,117 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,184 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,252 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,318 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,385 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,451 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,518 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,584 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,650 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,716 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,732 - stpipe.Coron3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 2021-02-12 01:47:25,733 - stpipe.Coron3Pipeline.resample - INFO - Step resample done 2021-02-12 01:47:26,769 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits 2021-02-12 01:47:26,769 - stpipe.Coron3Pipeline - INFO - ...ending calwebb_coron3 2021-02-12 01:47:26,769 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_coron3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_coron3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:219 No PARS-CORON3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-CORON3PIPELINE reference files found. INFO stpipe.Coron3Pipeline:step.py:313 Coron3Pipeline instance created. INFO stpipe.Coron3Pipeline.stack_refs:step.py:313 StackRefsStep instance created. INFO stpipe.Coron3Pipeline.align_refs:step.py:313 AlignRefsStep instance created. INFO stpipe.Coron3Pipeline.klip:step.py:313 KlipStep instance created. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Coron3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Coron3Pipeline:step.py:360 Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). INFO stpipe.Coron3Pipeline:step.py:364 Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} INFO stpipe.Coron3Pipeline:calwebb_coron3.py:49 Starting calwebb_coron3 ... DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24955 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24955 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.stack_refs:step.py:360 Step stack_refs running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.stack_refs:step.py:364 Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:step.py:474 Step stack_refs done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:360 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:364 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:474 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:360 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:364 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:474 Step klip done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:360 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:364 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:474 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:360 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:364 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:474 Step klip done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 blendheaders=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:404 Model size 97.5K available system memory 117.7G DEBUG stpipe.Coron3Pipeline.resample:util.py:404 Model size 97.5K available system memory 117.7G DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:step.py:474 Step resample done DEBUG stpipe.Coron3Pipeline:calwebb_coron3.py:165 Blending metadata for <ImageModel(158, 158)> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits INFO stpipe.Coron3Pipeline:calwebb_coron3.py:178 ...ending calwebb_coron3 INFO stpipe.Coron3Pipeline:step.py:474 Step Coron3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 ___________________ test_nircam_coron3_sci_exp[00001-psfsub] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 218 E b: 216 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e8587aac0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 __________________ test_nircam_coron3_sci_exp[00001-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 217 E b: 215 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a17e80>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 __________________ test_nircam_coron3_sci_exp[00002-psfalign] __________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85e3d970>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 ___________________ test_nircam_coron3_sci_exp[00002-psfsub] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 218 E b: 216 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85871df0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 __________________ test_nircam_coron3_sci_exp[00002-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 217 E b: 215 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85e5a7c0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 __________________ test_nircam_coron3_psf_exp[00003-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00003' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 211 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e841d5d30>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 __________________ test_nircam_coron3_psf_exp[00004-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00004' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 211 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e856da3d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 __________________ test_nircam_coron3_psf_exp[00005-crfints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00005' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 211 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e856eb310>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 _____________________ test_nircam_coron3_product[psfstack] _____________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits'} suffix = 'psfstack' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84b26f10>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 _______________________ test_nircam_coron3_product[i2d] ________________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits'} suffix = 'i2d' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84139130>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 _________________________ test_nircam_image_stage3_i2d _________________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_i2d(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): """Test that resampled i2d looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_i2d.fits" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e842245e0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:132: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-02-12 01:49:31,269 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:31,270 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:31,271 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:31,271 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:31,272 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:31,273 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:31,273 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:31,273 - stpipe - INFO - OS: Linux 2021-02-12 01:49:31,441 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2021-02-12 01:49:31,445 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:31,545 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:31,559 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-02-12 01:49:31,559 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:31,559 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-02-12 01:49:31,561 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:31,563 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-02-12 01:49:31,563 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2021-02-12 01:49:31,742 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:31,742 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:31,863 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-02-12 01:49:31,863 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-02-12 01:49:31,863 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:31,909 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:31,990 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:31,991 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:36,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:36,299 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:36,300 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:36,311 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-02-12 01:49:36,312 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:36,860 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:36,861 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-02-12 01:49:36,880 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:36,970 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-02-12 01:49:36,972 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:37,122 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2021-02-12 01:49:37,122 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:37,845 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:37,846 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:37,847 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:37,848 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:37,848 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:37,849 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:37,849 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:37,849 - stpipe - INFO - OS: Linux 2021-02-12 01:49:38,037 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2021-02-12 01:49:38,040 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:38,159 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:38,165 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-02-12 01:49:38,166 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:38,166 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:49:38,168 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2021-02-12 01:49:38,449 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:38,450 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:38,567 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-02-12 01:49:38,567 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-02-12 01:49:38,567 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:38,614 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:38,777 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:38,778 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:39,196 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:39,372 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:39,373 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:39,385 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-02-12 01:49:39,385 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:39,479 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:39,480 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-02-12 01:49:39,504 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:39,662 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:39,663 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:39,664 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:39,664 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:39,664 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-02-12 01:49:39,665 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:39,845 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2021-02-12 01:49:39,845 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:40,556 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:40,557 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:40,558 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:40,558 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:40,559 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:40,560 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:40,560 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:40,560 - stpipe - INFO - OS: Linux 2021-02-12 01:49:40,686 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2021-02-12 01:49:40,690 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:40,791 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:40,796 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-02-12 01:49:40,798 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:40,798 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-02-12 01:49:40,799 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-02-12 01:49:40,802 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2021-02-12 01:49:40,983 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:40,984 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:41,102 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-02-12 01:49:41,102 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-02-12 01:49:41,103 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:41,148 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:41,231 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:41,232 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:41,564 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:41,648 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:41,648 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:41,663 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-02-12 01:49:41,663 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:41,753 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:41,754 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-02-12 01:49:41,773 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:41,856 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:41,857 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:41,857 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:41,858 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:41,858 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-02-12 01:49:41,858 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:42,006 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2021-02-12 01:49:42,006 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:42,764 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:42,764 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:42,765 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:42,766 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:42,767 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:42,768 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:42,768 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:42,768 - stpipe - INFO - OS: Linux 2021-02-12 01:49:42,957 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2021-02-12 01:49:42,961 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:43,083 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:43,087 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-02-12 01:49:43,091 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2021-02-12 01:49:43,381 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:43,382 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:43,500 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-02-12 01:49:43,500 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-02-12 01:49:43,500 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:43,548 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:43,716 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:43,717 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:44,140 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:44,311 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:44,312 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:44,324 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-02-12 01:49:44,324 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:44,421 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:44,422 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-02-12 01:49:44,445 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:44,613 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:44,614 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:44,614 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:44,615 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:44,615 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-02-12 01:49:44,615 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:44,797 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2021-02-12 01:49:44,797 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:45,512 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:45,513 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:45,514 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:45,515 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:45,516 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:45,516 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:45,517 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:45,517 - stpipe - INFO - OS: Linux 2021-02-12 01:49:45,737 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2021-02-12 01:49:45,740 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:45,864 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:45,868 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-02-12 01:49:45,870 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:45,870 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-02-12 01:49:45,870 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2021-02-12 01:49:46,160 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:46,161 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:46,279 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-02-12 01:49:46,279 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-02-12 01:49:46,279 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:46,327 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:46,502 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:46,503 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:46,924 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:47,098 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:47,099 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:47,112 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-02-12 01:49:47,112 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-02-12 01:49:47,174 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:47,206 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:47,207 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-02-12 01:49:47,231 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:47,395 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:47,396 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:47,396 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:47,397 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:47,397 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-02-12 01:49:47,397 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:47,579 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2021-02-12 01:49:47,579 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:47,859 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2021-02-12 01:49:47,865 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-02-12 01:49:48,177 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-02-12 01:49:48,178 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-02-12 01:49:48,179 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-02-12 01:49:48,180 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-02-12 01:49:48,181 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:49:48,181 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:48,182 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-02-12 01:49:48,183 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:48,183 - stpipe - INFO - OS: Linux 2021-02-12 01:49:48,426 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2021-02-12 01:49:48,431 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-02-12 01:49:48,503 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-02-12 01:49:48,509 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-02-12 01:49:48,510 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-02-12 01:49:48,511 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:49:48,513 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-02-12 01:49:48,998 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-02-12 01:49:48,999 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-02-12 01:49:51,816 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2021-02-12 01:49:54,591 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2021-02-12 01:49:57,576 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2021-02-12 01:50:00,250 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2021-02-12 01:50:03,122 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2021-02-12 01:50:05,855 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2021-02-12 01:50:05,882 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:05,882 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-02-12 01:50:05,882 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-02-12 01:50:05,920 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2021-02-12 01:50:05,920 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2021-02-12 01:50:05,920 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2021-02-12 01:50:05,957 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2021-02-12 01:50:05,957 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2021-02-12 01:50:05,957 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2021-02-12 01:50:05,994 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-02-12 01:50:05.995159 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.0 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,227 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2021-02-12 01:50:06,231 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2021-02-12 01:50:06,383 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-02-12 01:50:06,384 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-02-12 01:50:06,385 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2021-02-12 01:50:06,385 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2021-02-12 01:50:06,386 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-02-12 01:50:06,387 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175216 FIT MAE: 0.128752 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2021-02-12 01:50:06,451 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2021-02-12 01:50:06,597 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-02-12 01:50:06,597 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-02-12 01:50:06,598 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2021-02-12 01:50:06,599 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2021-02-12 01:50:06,599 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185756 FIT MAE: 0.136124 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-02-12 01:50:06.664272 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.669113 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,740 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-02-12 01:50:06,861 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-02-12 01:50:06,862 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-02-12 01:50:06,952 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:06,952 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:50:06.952638 2021-02-12 01:50:06,952 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-02-12 01:50:10,465 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.18208548270841154 [not converted] 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:50:11.093288 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.140650 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,101 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-02-12 01:50:11,196 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:50:11,197 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:50:11,199 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2021-02-12 01:50:15,279 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:21,433 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:28,702 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:35,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:43,279 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:50,650 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:55,125 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-02-12 01:50:59,205 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-02-12 01:51:03,108 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:07,771 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:14,543 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:21,962 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:29,105 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:36,129 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:42,486 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2021-02-12 01:51:42,963 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2021-02-12 01:51:43,450 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2021-02-12 01:51:43,951 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2021-02-12 01:51:44,469 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2021-02-12 01:51:44,990 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2021-02-12 01:51:44,990 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:51:45,723 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:51:45,724 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:51:45,734 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:51:45,863 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2021-02-12 01:51:48,735 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:51:53,416 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:51:58,647 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:04,029 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:09,393 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:14,776 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:16,971 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 2021-02-12 01:52:17,410 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2021-02-12 01:52:17,411 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-02-12 01:52:17,531 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2021-02-12 01:52:17,532 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-02-12 01:52:17,543 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2021-02-12 01:52:17,546 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-02-12 01:52:17,546 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-02-12 01:52:17,577 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2021-02-12 01:52:22,646 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 129 sources 2021-02-12 01:52:24,510 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv 2021-02-12 01:52:24,510 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-02-12 01:52:24,511 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. INFO stpipe:step.py:752 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe:step.py:760 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:313 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:313 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:313 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:313 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:313 SourceCatalogStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image3Pipeline:step.py:360 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:364 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:51 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:360 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:364 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:128 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:129 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:162 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-02-12 01:50:05.995159 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-02-12 01:50:05.995159 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.0 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.0 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-02-12 01:50:06.664272 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-02-12 01:50:06.664272 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.669113 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.669113 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:step.py:474 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:360 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:364 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:50:06.952638 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:50:06.952638 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:50:11.093288 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:50:11.093288 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.140650 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.140650 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:474 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 45.6M available system memory 117.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 45.6M available system memory 117.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.439617819684393 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.439617819684393 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.419827654016025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.419827654016025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.443734843578195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.443734843578195 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162298 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162298 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164029 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164029 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4150475 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4150475 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4152685 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4152685 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162339 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162339 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164149 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164149 INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 45.6M available system memory 114.9G DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 45.6M available system memory 114.9G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:897 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:360 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:364 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 129 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv INFO stpipe.Image3Pipeline.source_catalog:step.py:474 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:474 Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 ____________________________ test_image3_closedfile ____________________________ run_image3_closedfile = None rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_image3_closedfile(run_image3_closedfile, rtdata, fitsdiff_default_kwargs): """Ensure production of Image3Pipeline output with data having closed file issues""" rtdata.output = 'jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits' rtdata.get_truth('truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits') diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/truth/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: 1.22063593283806e-07 E Extra keyword 'DVA_RA' in a: 2.6294403833358e-07 E Extra keyword 'VA_DEC' in b: 1.22063593283806e-07 E Extra keyword 'VA_RA' in b: 2.6294403833358e-07 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e86f136d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:152: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-02-12 01:52:27,423 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2021-02-12 01:52:27,429 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-02-12 01:52:28,065 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-02-12 01:52:28,066 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-02-12 01:52:28,067 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-02-12 01:52:28,068 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-02-12 01:52:28,069 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:52:28,070 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:52:28,071 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-02-12 01:52:28,071 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:52:28,071 - stpipe - INFO - OS: Linux 2021-02-12 01:52:28,405 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2021-02-12 01:52:28,410 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-02-12 01:52:28,547 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-02-12 01:52:28,550 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-02-12 01:52:28,551 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-02-12 01:52:28,551 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:52:28,551 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-02-12 01:52:28,892 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-02-12 01:52:28,893 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-02-12 01:52:28,905 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:28.905867 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:28.907754 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.001887 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,908 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-02-12 01:52:28,978 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:52:28,979 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:52:28,983 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:52:29,061 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2021-02-12 01:52:29,612 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-02-12 01:52:29,776 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-02-12 01:52:29,832 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 2021-02-12 01:52:30,162 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits 2021-02-12 01:52:30,162 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-02-12 01:52:30,274 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). 2021-02-12 01:52:30,275 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-02-12 01:52:30,283 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-02-12 01:52:30,286 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F090W 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: SUB320 2021-02-12 01:52:30,313 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.50412 2021-02-12 01:52:30,420 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1 sources 2021-02-12 01:52:30,512 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv 2021-02-12 01:52:30,513 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-02-12 01:52:30,513 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:752 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe:step.py:760 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:313 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:313 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:313 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:313 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:313 SourceCatalogStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image3Pipeline:step.py:360 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:364 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:51 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.skymatch:step.py:360 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:364 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:28.905867 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:28.905867 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:28.907754 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:28.907754 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.001887 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.001887 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:474 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 998.6K available system memory 117.8G DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 998.6K available system memory 117.8G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:step.py:897 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:360 Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:364 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: SUB320 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: SUB320 DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 1 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv INFO stpipe.Image3Pipeline.source_catalog:step.py:474 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:474 Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 _______________________ test_nircam_image_moving_target ________________________ rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ving_targe0/truth/mt_assoc_i2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" collect_pipeline_cfgs("config") rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["config/calwebb_image3.cfg", rtdata.input] Step.from_cmdline(args) rtdata.get_truth("truth/test_nircam_mtimage/mt_assoc_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_assoc_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/truth/mt_assoc_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e86362f40>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:23: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-02-12 01:52:35,011 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-02-12 01:52:35,017 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-02-12 01:52:36,286 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-02-12 01:52:36,287 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-02-12 01:52:36,288 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-02-12 01:52:36,289 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-02-12 01:52:36,290 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:52:36,291 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:52:36,292 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-02-12 01:52:36,292 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:52:36,292 - stpipe - INFO - OS: Linux 2021-02-12 01:52:36,516 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-02-12 01:52:36,522 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-02-12 01:52:36,714 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-02-12 01:52:36,716 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-02-12 01:52:36,717 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-02-12 01:52:36,717 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:52:36,718 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-02-12 01:52:37,675 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-02-12 01:52:37,676 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-02-12 01:52:37,731 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-02-12 01:52:37,886 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-02-12 01:52:37,888 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:37.942965 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,532 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:41.531978 2021-02-12 01:52:41,532 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.589013 2021-02-12 01:52:41,532 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,534 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-02-12 01:52:41,638 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:52:41,639 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:52:41,641 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-02-12 01:52:45,782 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:52:52,112 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:52:58,349 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:04,543 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:08,241 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-02-12 01:53:10,222 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-02-12 01:53:14,091 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:18,537 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:22,966 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:27,358 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:31,052 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,184 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,324 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,475 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,475 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:53:31,622 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:53:31,623 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:53:31,631 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:53:31,732 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-02-12 01:53:34,624 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:39,291 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:43,929 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:48,611 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:50,866 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-02-12 01:53:51,236 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-02-12 01:53:51,236 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-02-12 01:53:51,349 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-02-12 01:53:51,350 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-02-12 01:53:51,360 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-02-12 01:53:51,364 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-02-12 01:53:51,364 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-02-12 01:53:51,391 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-02-12 01:53:54,152 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 503 sources 2021-02-12 01:53:58,289 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: mt_assoc_cat.ecsv 2021-02-12 01:53:58,289 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-02-12 01:53:58,290 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:752 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe:step.py:760 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:313 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:313 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:313 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:313 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:313 SourceCatalogStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image3Pipeline:step.py:360 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:364 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:51 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:360 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:364 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:474 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:360 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:364 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:37.942965 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:37.942965 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:41.531978 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:41.531978 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.589013 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.589013 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:474 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 25.6M available system memory 117.3G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 25.6M available system memory 117.3G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.137004891434025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.137004891434025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.13860057265569 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.13860057265569 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.109878310665714 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.109878310665714 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.12768432355046 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.12768432355046 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2254258 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2254258 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2504657 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2504657 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2457604 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2457604 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2394286 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2394286 INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 25.6M available system memory 115.5G DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 25.6M available system memory 115.5G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:897 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:360 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:364 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 503 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: mt_assoc_cat.ecsv INFO stpipe.Image3Pipeline.source_catalog:step.py:474 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:474 Step Image3Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 ______ test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] _______ input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...l.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update model.write(rtdata.input) rtdata.get_truth(f"truth/test_nircam_mtimage/{input_file}") # Compare the results and the truth diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/truth/jw00634_nrcblong_mttest_tnotinrange_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 154 E b: 152 E Extra keyword 'DVA_DEC' in a: 2.95725265880122e-07 E Extra keyword 'DVA_RA' in a: 6.65744974570837e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85eff940>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:52: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-02-12 01:54:00,191 - stpipe - INFO - Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 ______________ test_nircam_image_moving_target_kwds[no_mt_table] _______________ input_file = 'jw00634_nrcblong_no_mtt_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..._no_mtt_uncal.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update model.write(rtdata.input) rtdata.get_truth(f"truth/test_nircam_mtimage/{input_file}") # Compare the results and the truth diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/truth/jw00634_nrcblong_no_mtt_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 154 E b: 152 E Extra keyword 'DVA_DEC' in a: 2.95725265880122e-07 E Extra keyword 'DVA_RA' in a: 6.65744974570837e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85723520>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:52: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-02-12 01:54:02,684 - stpipe - INFO - Moving target position table not found in the file ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 _____________ test_nircam_image_moving_target_kwds[with_mt_table] ______________ input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..._mttest_uncal.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update model.write(rtdata.input) rtdata.get_truth(f"truth/test_nircam_mtimage/{input_file}") # Compare the results and the truth diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/truth/jw00634_nrcblong_mttest_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 154 E b: 152 E Extra keyword 'DVA_DEC' in a: 2.95725265880122e-07 E Extra keyword 'DVA_RA' in a: 6.65744974570837e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e859a3700>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:52: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-02-12 01:54:05,340 - stpipe - INFO - Moving target RA and Dec updated. ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 _____________________ test_nircam_tsgrism_stage2[calints] ______________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...h_remote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'calints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_calints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a179a0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-02-12 01:54:06,919 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2021-02-12 01:54:06,920 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:06,921 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:06,921 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2021-02-12 01:54:06,922 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2021-02-12 01:54:06,922 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2021-02-12 01:54:06,925 - stpipe.Spec2Pipeline.master_background - INFO - MasterBackgroundNrsSlitsStep instance created. 2021-02-12 01:54:06,925 - stpipe.Spec2Pipeline.master_background.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:06,926 - stpipe.Spec2Pipeline.master_background.pathloss - INFO - PathLossStep instance created. 2021-02-12 01:54:06,927 - stpipe.Spec2Pipeline.master_background.barshadow - INFO - BarShadowStep instance created. 2021-02-12 01:54:06,927 - stpipe.Spec2Pipeline.master_background.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:06,928 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2021-02-12 01:54:06,929 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:06,929 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2021-02-12 01:54:06,930 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2021-02-12 01:54:06,930 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2021-02-12 01:54:06,931 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2021-02-12 01:54:06,932 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2021-02-12 01:54:06,932 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:06,933 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2021-02-12 01:54:06,934 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2021-02-12 01:54:06,935 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-02-12 01:54:06,935 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:06,935 - stpipe - INFO - OS: Linux 2021-02-12 01:54:07,074 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). 2021-02-12 01:54:07,085 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} 2021-02-12 01:54:07,163 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:54:07,176 - stpipe.Spec2Pipeline - INFO - Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. 2021-02-12 01:54:07,176 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:07,176 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:54:07,177 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:07,179 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. 2021-02-12 01:54:07,182 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2021-02-12 01:54:07,182 - stpipe.Spec2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-02-12 01:54:07,182 - stpipe.Spec2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... 2021-02-12 01:54:07,343 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-02-12 01:54:07,344 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:07,512 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:07,514 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:07,593 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-02-12 01:54:07,594 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} 2021-02-12 01:54:07,594 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2021-02-12 01:54:07,595 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2021-02-12 01:54:07,667 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-02-12 01:54:07,668 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:07,668 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2021-02-12 01:54:07,668 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2021-02-12 01:54:07,740 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-02-12 01:54:07,740 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:07,740 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2021-02-12 01:54:07,741 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2021-02-12 01:54:07,812 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-02-12 01:54:07,813 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:09,823 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-02-12 01:54:09,967 - stpipe.Spec2Pipeline.flat_field - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits 2021-02-12 01:54:09,968 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:10,059 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). 2021-02-12 01:54:10,059 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} 2021-02-12 01:54:10,068 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NRC_TSGRISM 2021-02-12 01:54:10,068 - stpipe.Spec2Pipeline.extract_2d - INFO - Setting extraction height to 64 2021-02-12 01:54:10,191 - stpipe.Spec2Pipeline.extract_2d - INFO - Using default order extraction from reference file 2021-02-12 01:54:10,191 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting order: [1] 2021-02-12 01:54:10,258 - stpipe.Spec2Pipeline.extract_2d - INFO - WCS made explicit for order: 1 2021-02-12 01:54:10,258 - stpipe.Spec2Pipeline.extract_2d - INFO - Spectral trace extents: (xmin:711, ymin:0), (xmax:1909, ymax:63) 2021-02-12 01:54:10,258 - stpipe.Spec2Pipeline.extract_2d - INFO - Extraction limits: (xmin:0, ymin:0), (xmax:2047, ymax:63) 2021-02-12 01:54:10,332 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extraction 2021-02-12 01:54:10,462 - stpipe.Spec2Pipeline.extract_2d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits 2021-02-12 01:54:10,462 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2021-02-12 01:54:10,575 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). 2021-02-12 01:54:10,575 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NRC_TSGRISM 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - INFO - Input SRCTYAPT = None 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - WARNING - SRCTYAPT keyword not found in input; using SRCTYPE instead 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - INFO - Input is a TSO exposure; setting SRCTYPE = POINT 2021-02-12 01:54:10,725 - stpipe.Spec2Pipeline.srctype - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits 2021-02-12 01:54:10,725 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2021-02-12 01:54:10,812 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:10,812 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} 2021-02-12 01:54:10,813 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2021-02-12 01:54:10,813 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2021-02-12 01:54:10,889 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:10,890 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:10,890 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2021-02-12 01:54:10,890 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2021-02-12 01:54:10,965 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:10,966 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:10,966 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2021-02-12 01:54:10,967 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2021-02-12 01:54:11,041 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:11,042 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:11,042 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2021-02-12 01:54:11,043 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2021-02-12 01:54:11,117 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:11,118 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:11,165 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits 2021-02-12 01:54:11,165 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NRC_TSGRISM 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - pupil: GRISMR 2021-02-12 01:54:11,333 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 840.466 2021-02-12 01:54:11,340 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:11,437 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-02-12 01:54:11,437 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2021-02-12 01:54:11,475 - stpipe.Spec2Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2021-02-12 01:54:11,477 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2021-02-12 01:54:11,477 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR will NOT be applied 2021-02-12 01:54:11,501 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing spectral order 1 2021-02-12 01:54:11,501 - stpipe.Spec2Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2021-02-12 01:54:11,504 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: 2021-02-12 01:54:11,504 - stpipe.Spec2Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2021-02-12 01:54:11,504 - stpipe.Spec2Pipeline.extract_1d - INFO - with background subtraction 2021-02-12 01:54:13,246 - stpipe.Spec2Pipeline.extract_1d - INFO - All 2 integrations done 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2021-02-12 01:54:13,444 - stpipe.Spec2Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits 2021-02-12 01:54:13,444 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2021-02-12 01:54:14,365 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2021-02-12 01:54:14,366 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:54:14,367 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2021-02-12 01:54:14,368 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-02-12 01:54:14,369 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2021-02-12 01:54:14,369 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:14,369 - stpipe - INFO - OS: Linux 2021-02-12 01:54:14,561 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). 2021-02-12 01:54:14,564 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2021-02-12 01:54:14,676 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] 2021-02-12 01:54:14,680 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2021-02-12 01:54:14,681 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2021-02-12 01:54:14,682 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2021-02-12 01:54:14,864 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-02-12 01:54:15,049 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:54:15,050 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:54:15,052 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 2 inputs 2021-02-12 01:54:15,096 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 2 images 2021-02-12 01:54:15,243 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:54:15,243 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2021-02-12 01:54:15,363 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits 2021-02-12 01:54:15,373 - stpipe.Tso3Pipeline - INFO - Extracting 1-D spectra ... 2021-02-12 01:54:15,479 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-02-12 01:54:15,480 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2021-02-12 01:54:15,518 - stpipe.Tso3Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2021-02-12 01:54:15,519 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2021-02-12 01:54:15,519 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR will NOT be applied 2021-02-12 01:54:15,537 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing spectral order 1 2021-02-12 01:54:15,537 - stpipe.Tso3Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2021-02-12 01:54:15,540 - stpipe.Tso3Pipeline.extract_1d - INFO - Using extraction limits: 2021-02-12 01:54:15,540 - stpipe.Tso3Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2021-02-12 01:54:15,540 - stpipe.Tso3Pipeline.extract_1d - INFO - with background subtraction 2021-02-12 01:54:17,279 - stpipe.Tso3Pipeline.extract_1d - INFO - All 2 integrations done 2021-02-12 01:54:17,282 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d done 2021-02-12 01:54:17,287 - stpipe.Tso3Pipeline - INFO - Performing white-light photometry ... 2021-02-12 01:54:17,377 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-02-12 01:54:17,378 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} 2021-02-12 01:54:17,384 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light done 2021-02-12 01:54:17,457 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits 2021-02-12 01:54:17,457 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv 2021-02-12 01:54:17,459 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-spec2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-spec2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:pipeline.py:219 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-SPEC2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-SPEC2PIPELINE reference files found. INFO stpipe.Spec2Pipeline:step.py:313 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:313 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:313 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:313 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background:step.py:313 MasterBackgroundNrsSlitsStep instance created. INFO stpipe.Spec2Pipeline.master_background.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background.pathloss:step.py:313 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background.barshadow:step.py:313 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background.photom:step.py:313 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:313 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:313 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:313 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:313 FringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:313 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:313 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:313 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:313 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:313 Extract1dStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Spec2Pipeline:step.py:360 Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:364 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Spec2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:86 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:103 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:169 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:345 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:360 Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:364 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:474 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:360 Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:364 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:474 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:360 Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:364 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:474 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:360 Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSGRISM DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.flat_field:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits INFO stpipe.Spec2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:360 Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:364 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:88 Setting extraction height to 64 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:88 Setting extraction height to 64 DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:102 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:102 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:124 Extracting order: [1] INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:124 Extracting order: [1] DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:212 Spectral trace extents: (xmin:711, ymin:0), (xmax:1909, ymax:63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:212 Spectral trace extents: (xmin:711, ymin:0), (xmax:1909, ymax:63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:213 Extraction limits: (xmin:0, ymin:0), (xmax:2047, ymax:63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:213 Extraction limits: (xmin:0, ymin:0), (xmax:2047, ymax:63) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:248 Computing wavelengths (this takes a while ...) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:248 Computing wavelengths (this takes a while ...) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:267 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:267 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits INFO stpipe.Spec2Pipeline.extract_2d:step.py:474 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:360 Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:364 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:59 Input SRCTYAPT = None INFO stpipe.Spec2Pipeline.srctype:srctype.py:59 Input SRCTYAPT = None WARNING stpipe.Spec2Pipeline.srctype:srctype.py:61 SRCTYAPT keyword not found in input; using SRCTYPE instead WARNING stpipe.Spec2Pipeline.srctype:srctype.py:61 SRCTYAPT keyword not found in input; using SRCTYPE instead INFO stpipe.Spec2Pipeline.srctype:srctype.py:80 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:80 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits INFO stpipe.Spec2Pipeline.srctype:step.py:474 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:360 Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:364 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} INFO stpipe.Spec2Pipeline.straylight:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:474 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:360 Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:364 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.fringe:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:474 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:360 Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:364 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:474 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:360 Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:364 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:474 Step barshadow done INFO stpipe.Spec2Pipeline.photom:step.py:360 Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:33 Input is SlitModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:53 Using area reference file: N/A DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:142 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:142 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:146 pupil: GRISMR INFO stpipe.Spec2Pipeline.photom:photom.py:146 pupil: GRISMR DEBUG stpipe.Spec2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Spec2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Spec2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Spec2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Spec2Pipeline.photom:photom.py:697 PHOTMJSR value: 840.466 INFO stpipe.Spec2Pipeline.photom:photom.py:697 PHOTMJSR value: 840.466 INFO stpipe.Spec2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:360 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:364 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:114 Input is a SlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:251 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:256 APCORR reference file name is "N/A" INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:257 APCORR will NOT be applied DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3760 with background subtraction INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3760 with background subtraction DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3279 All 2 integrations done INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3279 All 2 integrations done DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Spec2Pipeline.extract_1d:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:474 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:284 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:131 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits INFO stpipe.Spec2Pipeline:step.py:474 Step Spec2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg INFO stpipe.Tso3Pipeline:step.py:313 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:313 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:313 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:313 WhiteLightStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Tso3Pipeline:step.py:360 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:364 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:55 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:95 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 2 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_s2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_s2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111908 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111908 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111898 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111898 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:115 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:158 Extracting 1-D spectra ... INFO stpipe.Tso3Pipeline.extract_1d:step.py:360 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.extract_1d:step.py:364 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:114 Input is a SlitModel INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:251 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:256 APCORR reference file name is "N/A" INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:257 APCORR will NOT be applied DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3760 with background subtraction INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3760 with background subtraction DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3279 All 2 integrations done INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3279 All 2 integrations done DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Tso3Pipeline.extract_1d:step.py:474 Step extract_1d done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:163 Performing white-light photometry ... INFO stpipe.Tso3Pipeline.white_light:step.py:360 Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.white_light:step.py:364 Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. INFO stpipe.Tso3Pipeline.white_light:step.py:474 Step white_light done INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits INFO stpipe.Tso3Pipeline:calwebb_tso3.py:181 Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv INFO stpipe.Tso3Pipeline:step.py:474 Step Tso3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 ____________________ test_nircam_tsgrism_stage2[extract_2d] ____________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...emote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'extract_2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84ba6970>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 ____________________ test_nircam_tsgrism_stage2[flat_field] ____________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...emote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 230 E b: 228 E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a170a0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 ___________________ test_nircam_tsgrism_stage2[o012_crfints] ___________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'o012_crfints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e854c5a00>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 _____________________ test_nircam_tsgrism_stage2[srctype] ______________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...h_remote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'srctype' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e8459b1f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 _____________________ test_nircam_tsgrism_stage2[x1dints] ______________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...h_remote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'x1dints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83ac7190>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 ______________________ test_nircam_tsgrism_stage3_x1dints ______________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_tsgrism_stage3_x1dints(run_pipelines, fitsdiff_default_kwargs): rtdata = run_pipelines rtdata.input = "jw00721-o012_20191119t043909_tso3_001_asn.json" rtdata.output = "jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits" rtdata.get_truth("truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84ad6460>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:61: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 ___________________________ test_nircam_setpointing ____________________________ _jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") # The add_wcs function overwrites its input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: add_wcs(rtdata.input, siaf_path=siaf_path) except ValueError: pytest.skip('Engineering Database not available.') rtdata.get_truth("truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") fitsdiff_default_kwargs['rtol'] = 1e-6 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/truth/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-06, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 160 E b: 158 E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83c922b0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:99: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-02-12 01:54:19,503 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2021-02-12 01:54:19,590 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2021-02-12 01:54:19,590 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-02-12 01:54:19,590 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2021-02-12 01:54:19,591 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-02-12 01:54:19,592 - stpipe - INFO - TSO exposure: 2021-02-12 01:54:19,592 - stpipe - INFO - setting xref_sci to 769.0 2021-02-12 01:54:19,592 - stpipe - INFO - setting yref_sci to 130.0 2021-02-12 01:54:19,592 - stpipe - INFO - Updating wcs from telemetry. 2021-02-12 01:54:19,592 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-02-12 01:54:19,592 - stpipe - INFO - Telemetry search tolerance = 60 2021-02-12 01:54:19,592 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7f9e87054e50> 2021-02-12 01:54:19,639 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-02-12 01:54:19,889 - stpipe - INFO - Reduced set of pointings: 2021-02-12 01:54:19,889 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:19,889 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:19,889 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:19,890 - stpipe - INFO - Successful read of engineering quaternions: 2021-02-12 01:54:19,890 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:19,890 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:19,890 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:19,891 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-02-12 01:54:19,891 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-02-12 01:54:19,891 - stpipe - INFO - Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) 2021-02-12 01:54:19,891 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-02-12 01:54:19,892 - stpipe - INFO - Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) 2021-02-12 01:54:19,894 - stpipe - INFO - Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 2021-02-12 01:54:19,972 - stpipe - INFO - ...update completed ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:set_telescope_pointing.py:214 ...update completed INFO stpipe:set_telescope_pointing.py:214 ...update completed DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 ______________________ test_nircam_tsimg_stage2[calints] _______________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...truth_remote': 'jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'calints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "o006_crfints"]) def test_nircam_tsimg_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-image2 pipeline performed on NIRCam TSIMG data.""" rtdata = run_pipelines rtdata.input = "jw00312006001_02102_00001-seg001_nrcb1_rateints.fits" output = "jw00312006001_02102_00001-seg001_nrcb1_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsimg_stage23/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/truth/jw00312006001_02102_00001-seg001_nrcb1_calints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 235 E b: 233 E Extra keyword 'DVA_DEC' in a: -1.1553085596308e-07 E Extra keyword 'DVA_RA' in a: -3.0883818604768e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e855ff9d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:48: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-02-12 01:54:20,770 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:54:20,771 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:20,772 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:20,773 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:20,773 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:20,774 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:54:20,774 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:20,774 - stpipe - INFO - OS: Linux 2021-02-12 01:54:20,972 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). 2021-02-12 01:54:20,975 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:54:21,052 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-02-12 01:54:21,064 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-02-12 01:54:21,066 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:21,066 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-02-12 01:54:21,067 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-02-12 01:54:21,070 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... 2021-02-12 01:54:21,305 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-02-12 01:54:21,307 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:21,443 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:21,444 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:21,444 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:21,472 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:21,641 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-02-12 01:54:21,641 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:29,470 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-02-12 01:54:29,477 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:29,653 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-02-12 01:54:29,654 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:29,667 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits 2021-02-12 01:54:29,668 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-02-12 01:54:29,710 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:29,710 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-02-12 01:54:29,711 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-02-12 01:54:29,711 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-02-12 01:54:29,711 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:54:29,879 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:29,880 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 6.1144 2021-02-12 01:54:29,882 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:29,883 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-02-12 01:54:29,883 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:54:29,983 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits 2021-02-12 01:54:29,983 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:54:30,292 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:54:30,293 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:30,294 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:30,295 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:30,295 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:30,296 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:54:30,296 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:30,297 - stpipe - INFO - OS: Linux 2021-02-12 01:54:30,484 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). 2021-02-12 01:54:30,487 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:54:30,563 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-02-12 01:54:30,569 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... 2021-02-12 01:54:30,805 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-02-12 01:54:30,806 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:30,911 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:30,911 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:30,911 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:30,938 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:31,097 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-02-12 01:54:31,098 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:31,260 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-02-12 01:54:31,268 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:31,445 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-02-12 01:54:31,446 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:31,458 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits 2021-02-12 01:54:31,458 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:54:31,536 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:31,537 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 6.1144 2021-02-12 01:54:31,540 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:31,540 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2021-02-12 01:54:31,540 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:54:31,640 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits 2021-02-12 01:54:31,641 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:54:32,213 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2021-02-12 01:54:32,214 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:54:32,215 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2021-02-12 01:54:32,216 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-02-12 01:54:32,216 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2021-02-12 01:54:32,217 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:32,217 - stpipe - INFO - OS: Linux 2021-02-12 01:54:32,340 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). 2021-02-12 01:54:32,343 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2021-02-12 01:54:32,429 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] 2021-02-12 01:54:32,439 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. 2021-02-12 01:54:32,440 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. 2021-02-12 01:54:32,441 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2021-02-12 01:54:32,705 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-02-12 01:54:32,792 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:54:32,793 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:54:32,795 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-02-12 01:54:32,825 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-02-12 01:54:32,982 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:54:33,084 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-02-12 01:54:33,177 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:54:33,178 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:54:33,179 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-02-12 01:54:33,209 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-02-12 01:54:33,366 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:54:33,366 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2021-02-12 01:54:33,462 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits 2021-02-12 01:54:33,558 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits 2021-02-12 01:54:33,656 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). 2021-02-12 01:54:33,656 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2021-02-12 01:54:33,692 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2021-02-12 01:54:33,773 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). 2021-02-12 01:54:33,774 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2021-02-12 01:54:33,794 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2021-02-12 01:54:33,796 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv 2021-02-12 01:54:33,804 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg INFO stpipe.Tso3Pipeline:step.py:313 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:313 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:313 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:313 WhiteLightStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Tso3Pipeline:step.py:360 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:364 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:55 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:95 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:474 Step outlier_detection done DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:95 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:115 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline.tso_photometry:step.py:360 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:364 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:474 Step tso_photometry done INFO stpipe.Tso3Pipeline.tso_photometry:step.py:360 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:364 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:474 Step tso_photometry done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:181 Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv INFO stpipe.Tso3Pipeline:step.py:474 Step Tso3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 ____________________ test_nircam_tsimg_stage2[o006_crfints] ____________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..._remote': 'jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'o006_crfints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "o006_crfints"]) def test_nircam_tsimg_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-image2 pipeline performed on NIRCam TSIMG data.""" rtdata = run_pipelines rtdata.input = "jw00312006001_02102_00001-seg001_nrcb1_rateints.fits" output = "jw00312006001_02102_00001-seg001_nrcb1_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsimg_stage23/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/truth/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 236 E b: 234 E Extra keyword 'DVA_DEC' in a: -1.1553085596308e-07 E Extra keyword 'DVA_RA' in a: -3.0883818604768e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83be56d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:48: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 ___________________________ test_nircam_setpointing ____________________________ _jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..., 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam TSO imaging file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") # The add_wcs function overwrites its input, so output = input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: add_wcs(rtdata.input, siaf_path=siaf_path) except ValueError: pytest.skip('Engineering Database not available.') rtdata.get_truth("truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") fitsdiff_default_kwargs['rtol'] = 1e-6 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/truth/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-06, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 160 E b: 161 E Inconsistent duplicates of keyword '' : E Occurs 12 time(s) in a, 13 times in (b) E Keyword [11] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Guide star information E b> Time information E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83abc7f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:87: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2021-02-12 01:54:34,715 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits 2021-02-12 01:54:34,767 - stpipe - INFO - Updating WCS for aperture NRCB1_SUB64P 2021-02-12 01:54:34,767 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-02-12 01:54:34,768 - stpipe - INFO - Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 2021-02-12 01:54:34,768 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-02-12 01:54:34,769 - stpipe - INFO - Setting basic FITS WCS keywords for imaging 2021-02-12 01:54:34,770 - stpipe - INFO - TSO exposure: 2021-02-12 01:54:34,770 - stpipe - INFO - setting xref_sci to 32.5 2021-02-12 01:54:34,770 - stpipe - INFO - setting yref_sci to 32.5 2021-02-12 01:54:34,770 - stpipe - INFO - Updating wcs from telemetry. 2021-02-12 01:54:34,770 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-02-12 01:54:34,770 - stpipe - INFO - Telemetry search tolerance = 60 2021-02-12 01:54:34,770 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7f9e87054e50> 2021-02-12 01:54:34,802 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-02-12 01:54:35,039 - stpipe - INFO - Reduced set of pointings: 2021-02-12 01:54:35,039 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:35,040 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:35,040 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:35,040 - stpipe - INFO - Successful read of engineering quaternions: 2021-02-12 01:54:35,040 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:35,041 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:35,041 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:35,041 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-02-12 01:54:35,041 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-02-12 01:54:35,041 - stpipe - INFO - Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) 2021-02-12 01:54:35,041 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-02-12 01:54:35,043 - stpipe - INFO - Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) 2021-02-12 01:54:35,045 - stpipe - INFO - Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 2021-02-12 01:54:35,092 - stpipe - INFO - ...update completed ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:set_telescope_pointing.py:214 ...update completed INFO stpipe:set_telescope_pointing.py:214 ...update completed DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 __________________________ test_nircam_wfsimage[cal1] __________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00001_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00001_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 260 E b: 261 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a23d60>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2021-02-12 01:54:37,117 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:54:37,118 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:37,119 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:37,119 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:37,120 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:37,121 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:54:37,121 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:37,121 - stpipe - INFO - OS: Linux 2021-02-12 01:54:37,279 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). 2021-02-12 01:54:37,282 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:54:37,408 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:54:37,420 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. 2021-02-12 01:54:37,422 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:37,422 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. 2021-02-12 01:54:37,423 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:54:37,431 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00001_nrca4 2021-02-12 01:54:37,431 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00001_nrca4_rate.fits ... 2021-02-12 01:54:37,630 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:37,631 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:37,747 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-02-12 01:54:37,792 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 2021-02-12 01:54:37,792 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 2021-02-12 01:54:37,793 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:37,843 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:37,954 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:37,955 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:41,654 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:41,742 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:41,743 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:41,755 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-02-12 01:54:41,755 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-02-12 01:54:42,338 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:42,339 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-02-12 01:54:42,358 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:42,448 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:42,449 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:54:42,449 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00001_nrca4 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00002_nrca4 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00002_nrca4_rate.fits ... 2021-02-12 01:54:42,627 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:42,628 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:42,706 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-02-12 01:54:42,784 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 2021-02-12 01:54:42,784 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 2021-02-12 01:54:42,784 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:42,830 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:42,911 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:42,912 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:43,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:43,306 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:43,306 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:43,318 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-02-12 01:54:43,318 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-02-12 01:54:43,412 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:43,413 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-02-12 01:54:43,431 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:43,517 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:43,518 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:54:43,518 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:54:43,519 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:54:43,519 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00002_nrca4 2021-02-12 01:54:43,519 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:54:43,667 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00001_nrca4_cal.fits 2021-02-12 01:54:43,815 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00002_nrca4_cal.fits 2021-02-12 01:54:43,815 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:54:44,100 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-02-12 01:54:44,100 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:44,100 - stpipe - INFO - OS: Linux 2021-02-12 01:54:44,228 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). 2021-02-12 01:54:44,228 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} 2021-02-12 01:54:44,236 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json 2021-02-12 01:54:44,236 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-02-12 01:54:44,359 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-02-12 01:54:44,360 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-02-12 01:54:44,360 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 2021-02-12 01:54:44,360 - stpipe.WfsCombine - INFO - do_refine: False 2021-02-12 01:54:44,555 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -3 -2 2021-02-12 01:54:45,137 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits 2021-02-12 01:54:45,137 - stpipe.WfsCombine - INFO - Step WfsCombine done 2021-02-12 01:54:45,416 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-02-12 01:54:45,416 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:45,416 - stpipe - INFO - OS: Linux 2021-02-12 01:54:45,667 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). 2021-02-12 01:54:45,669 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} 2021-02-12 01:54:45,677 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json 2021-02-12 01:54:45,677 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-02-12 01:54:45,806 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-02-12 01:54:45,807 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-02-12 01:54:45,807 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine 2021-02-12 01:54:45,807 - stpipe.WfsCombine - INFO - do_refine: True 2021-02-12 01:54:46,621 - stpipe.WfsCombine - INFO - Approximate centroid of image 1 PSF has x,y : 1695 1713 2021-02-12 01:54:47,221 - stpipe.WfsCombine - INFO - From the refined offsets calculation,the x,y changes in ofsets are: 2 0 2021-02-12 01:54:47,221 - stpipe.WfsCombine - INFO - Values for the refined offsets are, for x,y : -1 -2 2021-02-12 01:54:47,221 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -1 -2 2021-02-12 01:54:48,009 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits 2021-02-12 01:54:48,009 - stpipe.WfsCombine - INFO - Step WfsCombine done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input jw00632003002_03105_00001_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input jw00632003002_03105_00002_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:313 WfsCombineStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.WfsCombine:step.py:360 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). INFO stpipe.WfsCombine:step.py:364 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:897 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits INFO stpipe.WfsCombine:step.py:474 Step WfsCombine done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:313 WfsCombineStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.WfsCombine:step.py:360 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). INFO stpipe.WfsCombine:step.py:364 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:897 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits INFO stpipe.WfsCombine:step.py:474 Step WfsCombine done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 __________________________ test_nircam_wfsimage[cal2] __________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00002_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00002_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 260 E b: 261 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e854e04f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 ________________________ test_nircam_wfsimage[wfscmb1] _________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 249 E b: 252 E Extra keyword 'VA_DEC' in b: -5.8373979160814e-07 E Extra keyword 'VA_RA' in b: -8.0042781085677e-07 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85eb2fd0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 ________________________ test_nircam_wfsimage[wfscmb2] _________________________ run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...: 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 249 E b: 252 E Extra keyword 'VA_DEC' in b: -5.8373979160814e-07 E Extra keyword 'VA_RA' in b: -8.0042781085677e-07 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85884d00>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 =============================== warnings summary =============================== miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py: 10 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/coron/imageregistration.py:167: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations shifts = np.empty((nslices, 3), dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py: 10 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/coron/imageregistration.py:120: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations offset = np.empty_like(image, dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py: 129 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 5 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 151 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/transforms/models.py:610: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations matrix = np.zeros((3, 3), dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 9 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py: 2 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py: 2 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/utils.py:72: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations indx = np.asarray(np.floor(np.asarray(value) + 0.5), dtype=np.int) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/ramp_fitting/ramp_fit.py:1999: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations got_case = np.zeros((asize1*asize2), dtype=np.bool) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/ramp_fitting/utils.py:534: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations pix_not_done = np.ones( npix, dtype=np.bool) # initialize to True miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 6 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py: 1 warning miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py: 2 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py: 2 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/flatfield/flat_field.py:221: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations flag_nonsci = np.bitwise_and(science.dq, dqflags.pixel['NON_SCIENCE']).astype(np.bool) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/tweakreg/tweakreg_catalog.py:76: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations mask = (dqflags.pixel['NON_SCIENCE'] & model.dq).astype(np.bool) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 64 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 32 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/gwcs/wcs.py:1990: DeprecationWarning: Indexing a WCS.pipeline step is deprecated. Use the `frame` and `transform` attributes instead. warnings.warn("Indexing a WCS.pipeline step is deprecated. " miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/tweakwcs/linalg.py:111: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations qt = np.eye(order, dtype=np.int) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 12 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/tweakwcs/linalg.py:134: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations q = np.eye(order, dtype=np.int) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 8 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 4 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/skymatch/skyimage.py:125: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations self.mask = np.asanyarray(mask, dtype=np.bool) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 8 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 4 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/skymatch/skyimage.py:257: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations xs = np.linspace(-0.5, nx - 0.5, nintx, dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 8 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 4 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/skymatch/skyimage.py:258: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations ys = np.linspace(-0.5, ny - 0.5, ninty, dtype=np.float)[1:-1] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 8 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 4 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/skymatch/skyimage.py:264: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations borderx = np.empty((npts + 1,), dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py: 8 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py: 4 warnings /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/skymatch/skyimage.py:265: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations bordery = np.empty((npts + 1,), dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/numpy/lib/nanfunctions.py:1113: RuntimeWarning: All-NaN slice encountered r, k = function_base._ureduce(a, func=_nanmedian, axis=axis, out=out, miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/astropy/modeling/math_functions.py:63: AstropyUserWarning: Models in math_functions are experimental. warnings.warn("Models in math_functions are experimental.", AstropyUserWarning) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/extract_1d/spec_wcs.py:48: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations pixel = np.arange(len(wavelength), dtype=np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/wfs_combine/wfs_combine.py:317: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations data1 = image1.data.astype(np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/wfs_combine/wfs_combine.py:318: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations data2 = image2.data.astype(np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/wfs_combine/wfs_combine.py:325: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations bad1 = np.bitwise_and(dq1, DO_NOT_USE).astype(np.bool) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/wfs_combine/wfs_combine.py:327: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations bad2 = np.bitwise_and(dq2, DO_NOT_USE).astype(np.bool) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/wfs_combine/wfs_combine.py:142: DeprecationWarning: `np.float` is a deprecated alias for the builtin `float`. To silence this warning, use `float` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.float64` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations data_1 = self.input_1.data.astype(np.float) miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/wfs_combine/wfs_combine.py:143: DeprecationWarning: `np.bool` is a deprecated alias for the builtin `bool`. To silence this warning, use `bool` by itself. Doing this will not modify any behavior and is safe. If you specifically wanted the numpy scalar type, use `np.bool_` here. Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations bad1 = np.bitwise_and(self.input_1.dq, DO_NOT_USE).astype(np.bool) -- Docs: https://docs.pytest.org/en/stable/warnings.html - generated html file: file:///data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmp7mpjl12i/regtest_report.html - =========================== short test summary info ============================ FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] === 32 failed, 16 passed, 399 deselected, 542 warnings in 534.23s (0:08:54) ====
HTML(html_report)
Report generated on 12-Feb-2021 at 01:54:51 by pytest-html v3.1.1
| BUILD_ID | 64 |
| BUILD_NUMBER | 64 |
| BUILD_TAG | jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-64 |
| BUILD_URL | https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/64/ |
| EXECUTOR_NUMBER | 26 |
| GIT_BRANCH | origin/master |
| GIT_COMMIT | 203f1829ac59802a2e672f7be3780a287570c752 |
| GIT_URL | https://github.com/spacetelescope/jwst_validation_notebooks |
| JENKINS_URL | https://plwishmaster.stsci.edu:8081/ |
| JOB_NAME | Notebooks/jwst_validation_notebooks_spacetelescope |
| NODE_NAME | jwcalibdev.stsci.edu |
| Packages | {"pluggy": "0.13.1", "py": "1.10.0", "pytest": "6.2.2"} |
| Platform | Linux-3.10.0-1160.11.1.el7.x86_64-x86_64-with-glibc2.10 |
| Plugins | {"asdf": "2.7.2", "ci-watson": "0.5", "forked": "1.3.0", "html": "3.1.1", "metadata": "1.11.0", "xdist": "2.2.1"} |
| Python | 3.8.6 |
| WORKSPACE | /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope |
48 tests ran in 533.86 seconds.
(Un)check the boxes to filter the results.
16 passed, 0 skipped, 32 failed, 0 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] | 90.14 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e86207310>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-02-12 01:46:00,931 - stpipe.Coron3Pipeline - INFO - Coron3Pipeline instance created. 2021-02-12 01:46:00,931 - stpipe.Coron3Pipeline.stack_refs - INFO - StackRefsStep instance created. 2021-02-12 01:46:00,932 - stpipe.Coron3Pipeline.align_refs - INFO - AlignRefsStep instance created. 2021-02-12 01:46:00,933 - stpipe.Coron3Pipeline.klip - INFO - KlipStep instance created. 2021-02-12 01:46:00,934 - stpipe.Coron3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:46:00,934 - stpipe.Coron3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:46:00,934 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:46:00,935 - stpipe - INFO - OS: Linux 2021-02-12 01:46:01,029 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). 2021-02-12 01:46:01,032 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:46:01,033 - stpipe.Coron3Pipeline - INFO - Starting calwebb_coron3 ... 2021-02-12 01:46:01,145 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,152 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,153 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,254 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,256 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,256 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,354 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,355 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,356 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,450 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,452 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,453 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,547 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] 2021-02-12 01:46:01,549 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:46:01,549 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2021-02-12 01:46:01,940 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). 2021-02-12 01:46:01,941 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:01,947 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-02-12 01:46:02,517 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-02-12 01:46:04,206 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits 2021-02-12 01:46:04,206 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:04,313 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). 2021-02-12 01:46:04,315 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:04,321 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-02-12 01:46:04,884 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-02-12 01:46:06,616 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits 2021-02-12 01:46:06,616 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:06,719 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). 2021-02-12 01:46:06,720 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:06,727 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2021-02-12 01:46:07,275 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2021-02-12 01:46:08,968 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits 2021-02-12 01:46:08,968 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:09,072 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs running with args (<ModelContainer>,). 2021-02-12 01:46:09,072 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} 2021-02-12 01:46:09,089 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 1 to output stack 2021-02-12 01:46:09,099 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 2 to output stack 2021-02-12 01:46:09,108 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 3 to output stack 2021-02-12 01:46:09,143 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs done 2021-02-12 01:46:09,211 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits 2021-02-12 01:46:09,394 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). 2021-02-12 01:46:09,395 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:09,401 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-02-12 01:46:09,507 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-02-12 01:46:09,783 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits 2021-02-12 01:46:09,783 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:09,875 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-02-12 01:46:09,876 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-02-12 01:46:09,882 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-02-12 01:46:46,048 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-02-12 01:46:46,269 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits 2021-02-12 01:46:46,381 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). 2021-02-12 01:46:46,382 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-02-12 01:46:46,388 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-02-12 01:46:46,845 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-02-12 01:46:46,919 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits 2021-02-12 01:46:47,231 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). 2021-02-12 01:46:47,232 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:46:47,239 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2021-02-12 01:46:47,345 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2021-02-12 01:46:47,622 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits 2021-02-12 01:46:47,622 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:46:47,720 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2021-02-12 01:46:47,720 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2021-02-12 01:46:47,727 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2021-02-12 01:47:23,848 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2021-02-12 01:47:24,059 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits 2021-02-12 01:47:24,184 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). 2021-02-12 01:47:24,184 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2021-02-12 01:47:24,191 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2021-02-12 01:47:24,634 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2021-02-12 01:47:24,708 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits 2021-02-12 01:47:24,925 - stpipe.Coron3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:47:24,926 - stpipe.Coron3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} 2021-02-12 01:47:24,936 - stpipe.Coron3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:47:25,117 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,184 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,252 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,318 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,385 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,451 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,518 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,584 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,650 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,716 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2021-02-12 01:47:25,732 - stpipe.Coron3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 2021-02-12 01:47:25,733 - stpipe.Coron3Pipeline.resample - INFO - Step resample done 2021-02-12 01:47:26,769 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits 2021-02-12 01:47:26,769 - stpipe.Coron3Pipeline - INFO - ...ending calwebb_coron3 2021-02-12 01:47:26,769 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_coron3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_coron3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:219 No PARS-CORON3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-CORON3PIPELINE reference files found. INFO stpipe.Coron3Pipeline:step.py:313 Coron3Pipeline instance created. INFO stpipe.Coron3Pipeline.stack_refs:step.py:313 StackRefsStep instance created. INFO stpipe.Coron3Pipeline.align_refs:step.py:313 AlignRefsStep instance created. INFO stpipe.Coron3Pipeline.klip:step.py:313 KlipStep instance created. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Coron3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Coron3Pipeline:step.py:360 Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). INFO stpipe.Coron3Pipeline:step.py:364 Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} INFO stpipe.Coron3Pipeline:calwebb_coron3.py:49 Starting calwebb_coron3 ... DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:326 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24955 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24955 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24963 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.stack_refs:step.py:360 Step stack_refs running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.stack_refs:step.py:364 Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:step.py:474 Step stack_refs done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:360 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:364 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:474 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:360 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:364 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:474 Step klip done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:216 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:105 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:897 Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:360 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:364 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:34 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:474 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:360 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:364 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:474 Step klip done INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 blendheaders=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:76 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:404 Model size 97.5K available system memory 117.7G DEBUG stpipe.Coron3Pipeline.resample:util.py:404 Model size 97.5K available system memory 117.7G DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:step.py:474 Step resample done DEBUG stpipe.Coron3Pipeline:calwebb_coron3.py:165 Blending metadata for <ImageModel(158, 158)> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline:step.py:897 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits INFO stpipe.Coron3Pipeline:calwebb_coron3.py:178 ...ending calwebb_coron3 INFO stpipe.Coron3Pipeline:step.py:474 Step Coron3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] | 0.21 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 218 E b: 216 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e8587aac0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] | 0.16 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00001' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 217 E b: 215 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a17e80>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] | 1.62 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...its', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits'} suffix = 'psfalign', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85e3d970>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148337280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] | 0.15 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits'} suffix = 'psfsub', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 218 E b: 216 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85871df0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 1560960 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] | 0.15 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00002' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfalign", "psfsub", "crfints"]) @pytest.mark.parametrize("exposure", ["00001", "00002"]) def test_nircam_coron3_sci_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 217 E b: 215 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85e5a7c0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:39: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 1560960 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] | 0.26 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00003' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 211 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e841d5d30>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] | 0.20 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00004' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 211 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e856da3d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] | 0.20 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits'} suffix = 'crfints', exposure = '00005' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["crfints"]) @pytest.mark.parametrize("exposure", ["00003", "00004", "00005"]) def test_nircam_coron3_psf_exp(run_pipeline, suffix, exposure, fitsdiff_default_kwargs): """Check intermediate results of calwebb_coron3""" rtdata = run_pipeline output = "jw9999947001_02102_" + exposure + "_nrcb3_a3001_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 213 E b: 211 E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e856eb310>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:55: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9950400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] | 0.37 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits'} suffix = 'psfstack' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84b26f10>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29710080 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] | 0.39 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits'} suffix = 'i2d' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -4.8253453067457e-08 E Extra keyword 'DVA_RA' in a: -3.5128123400086e-07 E Extra keyword 'VA_DEC' in b: -4.8253453067457e-08 E Extra keyword 'VA_RA' in b: -3.5128123400086e-07 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84139130>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 449280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_i2d | 175.64 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_i2d(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): """Test that resampled i2d looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" rtdata.output = "jw42424-o002_t001_nircam_clear-f444w_i2d.fits" rtdata.get_truth("truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e842245e0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:132: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-02-12 01:49:31,269 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:31,270 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:31,271 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:31,271 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:31,272 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:31,273 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:31,273 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:31,273 - stpipe - INFO - OS: Linux 2021-02-12 01:49:31,441 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2021-02-12 01:49:31,445 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:31,545 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:31,559 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-02-12 01:49:31,559 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:31,559 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:31,560 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-02-12 01:49:31,561 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:31,562 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:31,563 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-02-12 01:49:31,563 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-02-12 01:49:31,564 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2021-02-12 01:49:31,742 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:31,742 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:31,863 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-02-12 01:49:31,863 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2021-02-12 01:49:31,863 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:31,909 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:31,990 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:31,991 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:36,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:36,299 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:36,300 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:36,311 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-02-12 01:49:36,312 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:36,373 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:36,860 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:36,861 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-02-12 01:49:36,880 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:36,970 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:36,971 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2021-02-12 01:49:36,972 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:37,122 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2021-02-12 01:49:37,122 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:37,845 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:37,846 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:37,847 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:37,848 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:37,848 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:37,849 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:37,849 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:37,849 - stpipe - INFO - OS: Linux 2021-02-12 01:49:38,037 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2021-02-12 01:49:38,040 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:38,159 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:38,165 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-02-12 01:49:38,166 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:38,166 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:38,167 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:49:38,168 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:38,169 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-02-12 01:49:38,170 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-02-12 01:49:38,171 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2021-02-12 01:49:38,449 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:38,450 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:38,567 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-02-12 01:49:38,567 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2021-02-12 01:49:38,567 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:38,614 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:38,777 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:38,778 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:39,196 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:39,372 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:39,373 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:39,385 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-02-12 01:49:39,385 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:39,447 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:39,479 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:39,480 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-02-12 01:49:39,504 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:39,662 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2021-02-12 01:49:39,663 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:39,664 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:39,664 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:39,664 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2021-02-12 01:49:39,665 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:39,845 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2021-02-12 01:49:39,845 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:40,556 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:40,557 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:40,558 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:40,558 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:40,559 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:40,560 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:40,560 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:40,560 - stpipe - INFO - OS: Linux 2021-02-12 01:49:40,686 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2021-02-12 01:49:40,690 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:40,791 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:40,796 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:40,797 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-02-12 01:49:40,798 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:40,798 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-02-12 01:49:40,799 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:40,800 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:40,801 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-02-12 01:49:40,802 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2021-02-12 01:49:40,983 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:40,984 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:41,102 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-02-12 01:49:41,102 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2021-02-12 01:49:41,103 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:41,148 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:41,231 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:41,232 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:41,564 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:41,648 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:41,648 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:41,663 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-02-12 01:49:41,663 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:41,725 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:41,753 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:41,754 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-02-12 01:49:41,773 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:41,856 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2021-02-12 01:49:41,857 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:41,857 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:41,858 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:41,858 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2021-02-12 01:49:41,858 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:42,006 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2021-02-12 01:49:42,006 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:42,764 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:42,764 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:42,765 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:42,766 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:42,767 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:42,768 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:42,768 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:42,768 - stpipe - INFO - OS: Linux 2021-02-12 01:49:42,957 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2021-02-12 01:49:42,961 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:43,083 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:43,087 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:43,088 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:43,089 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:43,090 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-02-12 01:49:43,091 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2021-02-12 01:49:43,381 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:43,382 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:43,500 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-02-12 01:49:43,500 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2021-02-12 01:49:43,500 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:43,548 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:43,716 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:43,717 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:44,140 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:44,311 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:44,312 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:44,324 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-02-12 01:49:44,324 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:44,388 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:44,421 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:44,422 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-02-12 01:49:44,445 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:44,613 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2021-02-12 01:49:44,614 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:44,614 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:44,615 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:44,615 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2021-02-12 01:49:44,615 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:44,797 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2021-02-12 01:49:44,797 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:45,512 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:49:45,513 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:49:45,514 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:49:45,515 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:49:45,516 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:49:45,516 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:45,517 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:45,517 - stpipe - INFO - OS: Linux 2021-02-12 01:49:45,737 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2021-02-12 01:49:45,740 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:49:45,864 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:49:45,868 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:49:45,869 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2021-02-12 01:49:45,870 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:49:45,870 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2021-02-12 01:49:45,870 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:49:45,871 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-02-12 01:49:45,872 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2021-02-12 01:49:46,160 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:46,161 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:49:46,279 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-02-12 01:49:46,279 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2021-02-12 01:49:46,279 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:49:46,327 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:49:46,502 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:46,503 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:49:46,924 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:49:47,098 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:47,099 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:49:47,112 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits 2021-02-12 01:49:47,112 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2021-02-12 01:49:47,174 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:49:47,175 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:49:47,206 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:49:47,207 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.467368 2021-02-12 01:49:47,231 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:49:47,395 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2021-02-12 01:49:47,396 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:49:47,396 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:49:47,397 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:49:47,397 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2021-02-12 01:49:47,397 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:49:47,579 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2021-02-12 01:49:47,579 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:49:47,859 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2021-02-12 01:49:47,865 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-02-12 01:49:48,177 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-02-12 01:49:48,178 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-02-12 01:49:48,179 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-02-12 01:49:48,180 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-02-12 01:49:48,181 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:49:48,181 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:49:48,182 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-02-12 01:49:48,183 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:49:48,183 - stpipe - INFO - OS: Linux 2021-02-12 01:49:48,426 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2021-02-12 01:49:48,431 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-02-12 01:49:48,503 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-02-12 01:49:48,509 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-02-12 01:49:48,510 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-02-12 01:49:48,511 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:49:48,513 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-02-12 01:49:48,998 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2021-02-12 01:49:48,999 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2021-02-12 01:49:51,816 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2021-02-12 01:49:54,591 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2021-02-12 01:49:57,576 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2021-02-12 01:50:00,250 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2021-02-12 01:50:03,122 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2021-02-12 01:50:05,855 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2021-02-12 01:50:05,882 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:05,882 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2021-02-12 01:50:05,882 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2021-02-12 01:50:05,920 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2021-02-12 01:50:05,920 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2021-02-12 01:50:05,920 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2021-02-12 01:50:05,957 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2021-02-12 01:50:05,957 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2021-02-12 01:50:05,957 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2021-02-12 01:50:05,994 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2021-02-12 01:50:05.995159 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.0 2021-02-12 01:50:05,995 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,227 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2021-02-12 01:50:06,231 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2021-02-12 01:50:06,383 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-02-12 01:50:06,384 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-02-12 01:50:06,385 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2021-02-12 01:50:06,385 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2021-02-12 01:50:06,386 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-02-12 01:50:06,387 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175216 FIT MAE: 0.128752 2021-02-12 01:50:06,388 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2021-02-12 01:50:06,451 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2021-02-12 01:50:06,597 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2021-02-12 01:50:06,597 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2021-02-12 01:50:06,598 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2021-02-12 01:50:06,599 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2021-02-12 01:50:06,599 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185756 FIT MAE: 0.136124 2021-02-12 01:50:06,601 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2021-02-12 01:50:06.664272 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.669113 2021-02-12 01:50:06,664 - stpipe.Image3Pipeline.tweakreg - INFO - 2021-02-12 01:50:06,740 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2021-02-12 01:50:06,861 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-02-12 01:50:06,862 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-02-12 01:50:06,952 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:06,952 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:50:06.952638 2021-02-12 01:50:06,952 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:06,953 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-02-12 01:50:10,465 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:10,466 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.18208548270841154 [not converted] 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2021-02-12 01:50:11,092 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:50:11.093288 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.140650 2021-02-12 01:50:11,093 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:50:11,101 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-02-12 01:50:11,196 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:50:11,197 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:50:11,199 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2021-02-12 01:50:15,279 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:21,433 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:28,702 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:35,984 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:43,279 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:50,650 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:50:55,125 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2021-02-12 01:50:59,205 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-02-12 01:51:03,108 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:07,771 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:14,543 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:21,962 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:29,105 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:36,129 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2021-02-12 01:51:42,486 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2021-02-12 01:51:42,963 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2021-02-12 01:51:43,450 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2021-02-12 01:51:43,951 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2021-02-12 01:51:44,469 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2021-02-12 01:51:44,990 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2021-02-12 01:51:44,990 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:51:45,723 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:51:45,724 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:51:45,734 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:51:45,863 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2021-02-12 01:51:48,735 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:51:53,416 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:51:58,647 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:04,029 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:09,393 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:14,776 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2021-02-12 01:52:16,971 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 2021-02-12 01:52:17,410 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2021-02-12 01:52:17,411 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-02-12 01:52:17,531 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2021-02-12 01:52:17,532 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-02-12 01:52:17,543 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-02-12 01:52:17,545 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2021-02-12 01:52:17,546 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-02-12 01:52:17,546 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-02-12 01:52:17,577 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2021-02-12 01:52:22,646 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 129 sources 2021-02-12 01:52:24,510 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv 2021-02-12 01:52:24,510 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-02-12 01:52:24,511 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0067.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.33677043894089e-14, PIXAR_A2 = 0.003972344883408201 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.467368 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. INFO stpipe:step.py:752 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe:step.py:760 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:313 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:313 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:313 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:313 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:313 SourceCatalogStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image3Pipeline:step.py:360 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:364 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:51 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:360 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:364 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:97 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:128 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:129 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:156 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:159 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:162 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-02-12 01:50:05.995159 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2021-02-12 01:50:05.995159 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.0 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.0 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:612 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.027948 YSH: -0.0730398 PROPER ROT: 0.00561762 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00561762 SKEW: -0.0223542 ROT_X: 0.0167947 ROT_Y: -0.0055595 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.175216 FIT MAE: 0.128752 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:629 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:839 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:306 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:983 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:993 XSH: 0.0304202 YSH: -0.0565083 PROPER ROT: 0.00576196 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:995 <ROT>: 0.00576196 SKEW: -0.0145191 ROT_X: 0.0130215 ROT_Y: -0.00149761 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:998 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1003 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1004 FIT RMSE: 0.185756 FIT MAE: 0.136124 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1006 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:661 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-02-12 01:50:06.664272 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:662 ***** tweakwcs.imalign.align_wcs() ended on 2021-02-12 01:50:06.664272 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.669113 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.669113 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 INFO stpipe.Image3Pipeline.tweakreg:step.py:474 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:360 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:364 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:50:06.952638 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:50:06.952638 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.000498448 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.00110687 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: 0.18208548270841154 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrca5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00001_nrcb5_cal.fits. Sky background: 0.182085 (old=0, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrca5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00002_nrcb5_cal.fits. Sky background: 0.182584 (old=0.000498448, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrca5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw42424001001_01101_00003_nrcb5_cal.fits. Sky background: 0.183192 (old=0.00110687, delta=0.182085) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:50:11.093288 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:50:11.093288 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.140650 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.140650 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:474 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 45.6M available system memory 117.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 45.6M available system memory 117.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.439617819684393 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.439617819684393 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.419827654016025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.419827654016025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.443734843578195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 30.443734843578195 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 95047 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162298 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162298 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18208548270841154 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164029 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164029 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4150475 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4150475 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18258393107476095 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4152685 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4152685 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162339 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4162339 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.18319235701110184 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164149 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 4164149 INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 45.6M available system memory 114.9G DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 45.6M available system memory 114.9G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:897 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:360 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:364 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 129 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv INFO stpipe.Image3Pipeline.source_catalog:step.py:474 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:474 Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 143562240 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile | 4.58 | |
|
run_image3_closedfile = None rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_image3_closedfile(run_image3_closedfile, rtdata, fitsdiff_default_kwargs): """Ensure production of Image3Pipeline output with data having closed file issues""" rtdata.output = 'jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits' rtdata.get_truth('truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits') diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/truth/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: 1.22063593283806e-07 E Extra keyword 'DVA_RA' in a: 2.6294403833358e-07 E Extra keyword 'VA_DEC' in b: 1.22063593283806e-07 E Extra keyword 'VA_RA' in b: 2.6294403833358e-07 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e86f136d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py:152: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-02-12 01:52:27,423 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2021-02-12 01:52:27,429 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-02-12 01:52:28,065 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-02-12 01:52:28,066 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-02-12 01:52:28,067 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-02-12 01:52:28,068 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-02-12 01:52:28,069 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:52:28,070 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:52:28,071 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-02-12 01:52:28,071 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:52:28,071 - stpipe - INFO - OS: Linux 2021-02-12 01:52:28,405 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2021-02-12 01:52:28,410 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-02-12 01:52:28,547 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-02-12 01:52:28,550 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-02-12 01:52:28,551 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-02-12 01:52:28,551 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:52:28,551 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-02-12 01:52:28,892 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-02-12 01:52:28,893 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-02-12 01:52:28,905 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:28.905867 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:52:28,906 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:28.907754 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.001887 2021-02-12 01:52:28,907 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:28,908 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-02-12 01:52:28,978 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:52:28,979 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:52:28,983 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:52:29,061 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2021-02-12 01:52:29,612 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-02-12 01:52:29,776 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2021-02-12 01:52:29,832 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 2021-02-12 01:52:30,162 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits 2021-02-12 01:52:30,162 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-02-12 01:52:30,274 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). 2021-02-12 01:52:30,275 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-02-12 01:52:30,283 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-02-12 01:52:30,286 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F090W 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-02-12 01:52:30,287 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: SUB320 2021-02-12 01:52:30,313 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.50412 2021-02-12 01:52:30,420 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1 sources 2021-02-12 01:52:30,512 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv 2021-02-12 01:52:30,513 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-02-12 01:52:30,513 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19324800 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:752 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe:step.py:760 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:313 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:313 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:313 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:313 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:313 SourceCatalogStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image3Pipeline:step.py:360 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:364 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:51 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.skymatch:step.py:360 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:364 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:28.905867 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:28.905867 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:291 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:396 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:420 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:361 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:416 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:28.907754 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:28.907754 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.001887 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.001887 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:474 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 998.6K available system memory 117.8G DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 998.6K available system memory 117.8G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:step.py:897 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:360 Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:364 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: SUB320 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: SUB320 DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 1 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv INFO stpipe.Image3Pipeline.source_catalog:step.py:474 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:474 Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 3225600 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target | 88.44 | |
|
rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ving_targe0/truth/mt_assoc_i2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" collect_pipeline_cfgs("config") rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["config/calwebb_image3.cfg", rtdata.input] Step.from_cmdline(args) rtdata.get_truth("truth/test_nircam_mtimage/mt_assoc_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_assoc_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/truth/mt_assoc_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 4 (HDRTAB, 1): E E Headers contain differences: E Keyword TTYPE186 has different values: E a> DVA_RA E ? - E b> VA_RA E Keyword TTYPE187 has different values: E a> DVA_DEC E ? - E b> VA_DEC E E Data contains differences: E Extra column DVA_RA of format D in a E Extra column DVA_DEC of format D in a E Extra column VA_RA of format D in b E Extra column VA_DEC of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e86362f40>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:23: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-02-12 01:52:35,011 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2021-02-12 01:52:35,017 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2021-02-12 01:52:36,286 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2021-02-12 01:52:36,287 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2021-02-12 01:52:36,288 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2021-02-12 01:52:36,289 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2021-02-12 01:52:36,290 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:52:36,291 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:52:36,292 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2021-02-12 01:52:36,292 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:52:36,292 - stpipe - INFO - OS: Linux 2021-02-12 01:52:36,516 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2021-02-12 01:52:36,522 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2021-02-12 01:52:36,714 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2021-02-12 01:52:36,716 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2021-02-12 01:52:36,717 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2021-02-12 01:52:36,717 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:52:36,718 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2021-02-12 01:52:37,675 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2021-02-12 01:52:37,676 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2021-02-12 01:52:37,731 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2021-02-12 01:52:37,886 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2021-02-12 01:52:37,888 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:37.942965 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:37,943 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,112 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2021-02-12 01:52:41,531 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,532 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:41.531978 2021-02-12 01:52:41,532 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.589013 2021-02-12 01:52:41,532 - stpipe.Image3Pipeline.skymatch - INFO - 2021-02-12 01:52:41,534 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2021-02-12 01:52:41,638 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:52:41,639 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:52:41,641 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-02-12 01:52:45,782 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:52:52,112 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:52:58,349 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:04,543 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:08,241 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-02-12 01:53:10,222 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2021-02-12 01:53:14,091 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:18,537 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:22,966 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:27,358 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2021-02-12 01:53:31,052 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,184 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,324 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,475 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2021-02-12 01:53:31,475 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:53:31,622 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2021-02-12 01:53:31,623 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:53:31,631 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:53:31,732 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2021-02-12 01:53:34,624 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:39,291 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:43,929 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:48,611 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2021-02-12 01:53:50,866 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2021-02-12 01:53:51,236 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2021-02-12 01:53:51,236 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2021-02-12 01:53:51,349 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2021-02-12 01:53:51,350 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2021-02-12 01:53:51,360 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2021-02-12 01:53:51,363 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2021-02-12 01:53:51,364 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2021-02-12 01:53:51,364 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2021-02-12 01:53:51,391 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2021-02-12 01:53:54,152 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 503 sources 2021-02-12 01:53:58,289 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: mt_assoc_cat.ecsv 2021-02-12 01:53:58,289 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2021-02-12 01:53:58,290 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:752 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe:step.py:760 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:313 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:313 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:313 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:313 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:313 SourceCatalogStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image3Pipeline:step.py:360 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:364 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:51 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:360 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:364 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:474 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:360 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:364 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:37.942965 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2021-02-12 01:52:37.942965 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:282 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:283 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:294 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:304 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:305 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:440 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:342 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:345 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:359 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:363 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:367 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:436 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:374 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:41.531978 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:375 ***** jwst.skymatch.skymatch.match() ended on 2021-02-12 01:52:41.531978 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.589013 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:377 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.589013 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:379 INFO stpipe.Image3Pipeline.skymatch:step.py:474 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 25.6M available system memory 117.3G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:404 Model size 25.6M available system memory 117.3G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.137004891434025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.137004891434025 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.13860057265569 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.13860057265569 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.109878310665714 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.109878310665714 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.12768432355046 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 38.12768432355046 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:310 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:558 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:559 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:562 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2254258 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2254258 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2504657 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2504657 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2457604 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2457604 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:401 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2394286 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2394286 INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:897 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:360 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:76 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 25.6M available system memory 115.5G DEBUG stpipe.Image3Pipeline.resample:util.py:404 Model size 25.6M available system memory 115.5G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:110 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:897 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:360 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:364 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:87 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:89 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:91 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:93 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:95 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:256 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 503 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:120 Wrote source catalog: mt_assoc_cat.ecsv INFO stpipe.Image3Pipeline.source_catalog:step.py:474 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:474 Step Image3Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 80619840 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] | 2.53 | |
|
input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...l.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update model.write(rtdata.input) rtdata.get_truth(f"truth/test_nircam_mtimage/{input_file}") # Compare the results and the truth diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/truth/jw00634_nrcblong_mttest_tnotinrange_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 154 E b: 152 E Extra keyword 'DVA_DEC' in a: 2.95725265880122e-07 E Extra keyword 'DVA_RA' in a: 6.65744974570837e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85eff940>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:52: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-02-12 01:54:00,191 - stpipe - INFO - Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83954880 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 INFO stpipe:set_telescope_pointing.py:237 Exposure midpoint 58738.82673409005 is not in the moving_target table range of 58738.6194519728 to 58738.62094319086 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83960640 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] | 2.15 | |
|
input_file = 'jw00634_nrcblong_no_mtt_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..._no_mtt_uncal.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update model.write(rtdata.input) rtdata.get_truth(f"truth/test_nircam_mtimage/{input_file}") # Compare the results and the truth diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/truth/jw00634_nrcblong_no_mtt_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 154 E b: 152 E Extra keyword 'DVA_DEC' in a: 2.95725265880122e-07 E Extra keyword 'DVA_RA' in a: 6.65744974570837e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85723520>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:52: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-02-12 01:54:02,684 - stpipe - INFO - Moving target position table not found in the file -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83946240 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:241 Moving target position table not found in the file DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] | 2.18 | |
|
input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..._mttest_uncal.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input with datamodels.open(rtdata.output) as model: update_mt_kwds(model) # since the model is updated in place we need to write out the update model.write(rtdata.input) rtdata.get_truth(f"truth/test_nircam_mtimage/{input_file}") # Compare the results and the truth diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/truth/jw00634_nrcblong_mttest_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 154 E b: 152 E Extra keyword 'DVA_DEC' in a: 2.95725265880122e-07 E Extra keyword 'DVA_RA' in a: 6.65744974570837e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e859a3700>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_mtimage.py:52: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-02-12 01:54:05,340 - stpipe - INFO - Moving target RA and Dec updated. -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. INFO stpipe:set_telescope_pointing.py:244 Moving target RA and Dec updated. DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83960640 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] | 11.43 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...h_remote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'calints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_calints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a179a0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-02-12 01:54:06,919 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2021-02-12 01:54:06,920 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:06,921 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:06,921 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2021-02-12 01:54:06,922 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2021-02-12 01:54:06,922 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2021-02-12 01:54:06,925 - stpipe.Spec2Pipeline.master_background - INFO - MasterBackgroundNrsSlitsStep instance created. 2021-02-12 01:54:06,925 - stpipe.Spec2Pipeline.master_background.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:06,926 - stpipe.Spec2Pipeline.master_background.pathloss - INFO - PathLossStep instance created. 2021-02-12 01:54:06,927 - stpipe.Spec2Pipeline.master_background.barshadow - INFO - BarShadowStep instance created. 2021-02-12 01:54:06,927 - stpipe.Spec2Pipeline.master_background.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:06,928 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2021-02-12 01:54:06,929 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:06,929 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2021-02-12 01:54:06,930 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2021-02-12 01:54:06,930 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2021-02-12 01:54:06,931 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2021-02-12 01:54:06,932 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2021-02-12 01:54:06,932 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:06,933 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2021-02-12 01:54:06,934 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2021-02-12 01:54:06,935 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-02-12 01:54:06,935 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:06,935 - stpipe - INFO - OS: Linux 2021-02-12 01:54:07,074 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). 2021-02-12 01:54:07,085 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} 2021-02-12 01:54:07,163 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:07,175 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:54:07,176 - stpipe.Spec2Pipeline - INFO - Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. 2021-02-12 01:54:07,176 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:07,176 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:54:07,177 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:07,178 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:07,179 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2021-02-12 01:54:07,180 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. 2021-02-12 01:54:07,182 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2021-02-12 01:54:07,182 - stpipe.Spec2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-02-12 01:54:07,182 - stpipe.Spec2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... 2021-02-12 01:54:07,343 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-02-12 01:54:07,344 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:07,512 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:07,514 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:07,593 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-02-12 01:54:07,594 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} 2021-02-12 01:54:07,594 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2021-02-12 01:54:07,595 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2021-02-12 01:54:07,667 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2021-02-12 01:54:07,668 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:07,668 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2021-02-12 01:54:07,668 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2021-02-12 01:54:07,740 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-02-12 01:54:07,740 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:07,740 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2021-02-12 01:54:07,741 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2021-02-12 01:54:07,812 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2021-02-12 01:54:07,813 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:09,823 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-02-12 01:54:09,967 - stpipe.Spec2Pipeline.flat_field - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits 2021-02-12 01:54:09,968 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:10,059 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). 2021-02-12 01:54:10,059 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} 2021-02-12 01:54:10,068 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NRC_TSGRISM 2021-02-12 01:54:10,068 - stpipe.Spec2Pipeline.extract_2d - INFO - Setting extraction height to 64 2021-02-12 01:54:10,191 - stpipe.Spec2Pipeline.extract_2d - INFO - Using default order extraction from reference file 2021-02-12 01:54:10,191 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting order: [1] 2021-02-12 01:54:10,258 - stpipe.Spec2Pipeline.extract_2d - INFO - WCS made explicit for order: 1 2021-02-12 01:54:10,258 - stpipe.Spec2Pipeline.extract_2d - INFO - Spectral trace extents: (xmin:711, ymin:0), (xmax:1909, ymax:63) 2021-02-12 01:54:10,258 - stpipe.Spec2Pipeline.extract_2d - INFO - Extraction limits: (xmin:0, ymin:0), (xmax:2047, ymax:63) 2021-02-12 01:54:10,332 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extraction 2021-02-12 01:54:10,462 - stpipe.Spec2Pipeline.extract_2d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits 2021-02-12 01:54:10,462 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2021-02-12 01:54:10,575 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). 2021-02-12 01:54:10,575 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NRC_TSGRISM 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - INFO - Input SRCTYAPT = None 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - WARNING - SRCTYAPT keyword not found in input; using SRCTYPE instead 2021-02-12 01:54:10,613 - stpipe.Spec2Pipeline.srctype - INFO - Input is a TSO exposure; setting SRCTYPE = POINT 2021-02-12 01:54:10,725 - stpipe.Spec2Pipeline.srctype - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits 2021-02-12 01:54:10,725 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2021-02-12 01:54:10,812 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:10,812 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} 2021-02-12 01:54:10,813 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2021-02-12 01:54:10,813 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2021-02-12 01:54:10,889 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:10,890 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2021-02-12 01:54:10,890 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2021-02-12 01:54:10,890 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2021-02-12 01:54:10,965 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:10,966 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:10,966 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2021-02-12 01:54:10,967 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2021-02-12 01:54:11,041 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:11,042 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:11,042 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2021-02-12 01:54:11,043 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2021-02-12 01:54:11,117 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2021-02-12 01:54:11,118 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:11,165 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits 2021-02-12 01:54:11,165 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NRC_TSGRISM 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:54:11,244 - stpipe.Spec2Pipeline.photom - INFO - pupil: GRISMR 2021-02-12 01:54:11,333 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 840.466 2021-02-12 01:54:11,340 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:11,437 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-02-12 01:54:11,437 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2021-02-12 01:54:11,475 - stpipe.Spec2Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2021-02-12 01:54:11,477 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2021-02-12 01:54:11,477 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR will NOT be applied 2021-02-12 01:54:11,501 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing spectral order 1 2021-02-12 01:54:11,501 - stpipe.Spec2Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2021-02-12 01:54:11,504 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: 2021-02-12 01:54:11,504 - stpipe.Spec2Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2021-02-12 01:54:11,504 - stpipe.Spec2Pipeline.extract_1d - INFO - with background subtraction 2021-02-12 01:54:13,246 - stpipe.Spec2Pipeline.extract_1d - INFO - All 2 integrations done 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2021-02-12 01:54:13,328 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2021-02-12 01:54:13,444 - stpipe.Spec2Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits 2021-02-12 01:54:13,444 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2021-02-12 01:54:14,365 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2021-02-12 01:54:14,366 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:54:14,367 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2021-02-12 01:54:14,368 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-02-12 01:54:14,369 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2021-02-12 01:54:14,369 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:14,369 - stpipe - INFO - OS: Linux 2021-02-12 01:54:14,561 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). 2021-02-12 01:54:14,564 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2021-02-12 01:54:14,676 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] 2021-02-12 01:54:14,680 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2021-02-12 01:54:14,681 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2021-02-12 01:54:14,682 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2021-02-12 01:54:14,864 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-02-12 01:54:15,049 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:54:15,050 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:54:15,052 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 2 inputs 2021-02-12 01:54:15,096 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 2 images 2021-02-12 01:54:15,243 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:54:15,243 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2021-02-12 01:54:15,363 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits 2021-02-12 01:54:15,373 - stpipe.Tso3Pipeline - INFO - Extracting 1-D spectra ... 2021-02-12 01:54:15,479 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-02-12 01:54:15,480 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2021-02-12 01:54:15,518 - stpipe.Tso3Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2021-02-12 01:54:15,519 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2021-02-12 01:54:15,519 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR will NOT be applied 2021-02-12 01:54:15,537 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing spectral order 1 2021-02-12 01:54:15,537 - stpipe.Tso3Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2021-02-12 01:54:15,540 - stpipe.Tso3Pipeline.extract_1d - INFO - Using extraction limits: 2021-02-12 01:54:15,540 - stpipe.Tso3Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2021-02-12 01:54:15,540 - stpipe.Tso3Pipeline.extract_1d - INFO - with background subtraction 2021-02-12 01:54:17,279 - stpipe.Tso3Pipeline.extract_1d - INFO - All 2 integrations done 2021-02-12 01:54:17,282 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d done 2021-02-12 01:54:17,287 - stpipe.Tso3Pipeline - INFO - Performing white-light photometry ... 2021-02-12 01:54:17,377 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2021-02-12 01:54:17,378 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} 2021-02-12 01:54:17,384 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light done 2021-02-12 01:54:17,457 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits 2021-02-12 01:54:17,457 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv 2021-02-12 01:54:17,459 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-spec2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-spec2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:pipeline.py:219 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-SPEC2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-SPEC2PIPELINE reference files found. INFO stpipe.Spec2Pipeline:step.py:313 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:313 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:313 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:313 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background:step.py:313 MasterBackgroundNrsSlitsStep instance created. INFO stpipe.Spec2Pipeline.master_background.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background.pathloss:step.py:313 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background.barshadow:step.py:313 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background.photom:step.py:313 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:313 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:313 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:313 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:313 FringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:313 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:313 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:313 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:313 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:313 Extract1dStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Spec2Pipeline:step.py:360 Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:364 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Spec2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:86 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:103 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:169 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:345 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:360 Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:364 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sigma': 3.0, 'maxiters': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:474 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:360 Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:364 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:474 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:360 Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:364 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:474 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:360 Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSGRISM DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:336 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.flat_field:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits INFO stpipe.Spec2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:360 Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:364 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:88 Setting extraction height to 64 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:88 Setting extraction height to 64 DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:102 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:102 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:124 Extracting order: [1] INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:124 Extracting order: [1] DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:212 Spectral trace extents: (xmin:711, ymin:0), (xmax:1909, ymax:63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:212 Spectral trace extents: (xmin:711, ymin:0), (xmax:1909, ymax:63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:213 Extraction limits: (xmin:0, ymin:0), (xmax:2047, ymax:63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:213 Extraction limits: (xmin:0, ymin:0), (xmax:2047, ymax:63) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:248 Computing wavelengths (this takes a while ...) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:248 Computing wavelengths (this takes a while ...) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:267 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:267 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits INFO stpipe.Spec2Pipeline.extract_2d:step.py:474 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:360 Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:364 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:59 Input SRCTYAPT = None INFO stpipe.Spec2Pipeline.srctype:srctype.py:59 Input SRCTYAPT = None WARNING stpipe.Spec2Pipeline.srctype:srctype.py:61 SRCTYAPT keyword not found in input; using SRCTYPE instead WARNING stpipe.Spec2Pipeline.srctype:srctype.py:61 SRCTYAPT keyword not found in input; using SRCTYPE instead INFO stpipe.Spec2Pipeline.srctype:srctype.py:80 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:80 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits INFO stpipe.Spec2Pipeline.srctype:step.py:474 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:360 Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:364 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} INFO stpipe.Spec2Pipeline.straylight:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:474 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:360 Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:364 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.fringe:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:474 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:360 Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:364 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:474 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:360 Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:364 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:394 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:474 Step barshadow done INFO stpipe.Spec2Pipeline.photom:step.py:360 Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:33 Input is SlitModel INFO stpipe.Spec2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:53 Using area reference file: N/A DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:142 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:142 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:146 pupil: GRISMR INFO stpipe.Spec2Pipeline.photom:photom.py:146 pupil: GRISMR DEBUG stpipe.Spec2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0064.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Spec2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Spec2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Spec2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Spec2Pipeline.photom:photom.py:697 PHOTMJSR value: 840.466 INFO stpipe.Spec2Pipeline.photom:photom.py:697 PHOTMJSR value: 840.466 INFO stpipe.Spec2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:360 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:364 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:114 Input is a SlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:251 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:256 APCORR reference file name is "N/A" INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:257 APCORR will NOT be applied DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3760 with background subtraction INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3760 with background subtraction DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3279 All 2 integrations done INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3279 All 2 integrations done DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Spec2Pipeline.extract_1d:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:474 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:284 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:131 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits INFO stpipe.Spec2Pipeline:step.py:474 Step Spec2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:188 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg INFO stpipe.Tso3Pipeline:step.py:313 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:313 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:313 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:313 WhiteLightStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Tso3Pipeline:step.py:360 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:364 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:55 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:95 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 2 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_s2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_s2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111908 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111908 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111898 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 111898 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:115 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:158 Extracting 1-D spectra ... INFO stpipe.Tso3Pipeline.extract_1d:step.py:360 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.extract_1d:step.py:364 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:114 Input is a SlitModel INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:251 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:256 APCORR reference file name is "N/A" INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:257 APCORR will NOT be applied DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3134 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3171 Beginning loop over 2 integrations ... DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1699 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1700 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1716 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1774 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3743 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3756 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3760 with background subtraction INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3760 with background subtraction DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3279 All 2 integrations done INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3279 All 2 integrations done DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3414 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3440 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Tso3Pipeline.extract_1d:step.py:474 Step extract_1d done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:163 Performing white-light photometry ... INFO stpipe.Tso3Pipeline.white_light:step.py:360 Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.white_light:step.py:364 Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. INFO stpipe.Tso3Pipeline.white_light:step.py:474 Step white_light done INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits INFO stpipe.Tso3Pipeline:calwebb_tso3.py:181 Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv INFO stpipe.Tso3Pipeline:step.py:474 Step Tso3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7977600 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] | 0.20 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...emote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'extract_2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84ba6970>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] | 0.34 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...emote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 230 E b: 228 E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a170a0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25257600 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] | 0.21 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'o012_crfints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e854c5a00>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7977600 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] | 0.19 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...h_remote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'srctype' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e8459b1f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] | 0.14 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...h_remote': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'x1dints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "extract_2d", "flat_field", "o012_crfints", "srctype", "x1dints"]) def test_nircam_tsgrism_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-spec2 pipeline performed on NIRCam TSO grism data.""" rtdata = run_pipelines rtdata.input = "jw00721012001_03103_00001-seg001_nrcalong_rateints.fits" output = "jw00721012001_03103_00001-seg001_nrcalong_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsgrism_stages/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83ac7190>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:50: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 397440 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints | 0.14 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...': 'jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_tsgrism_stage3_x1dints(run_pipelines, fitsdiff_default_kwargs): rtdata = run_pipelines rtdata.input = "jw00721-o012_20191119t043909_tso3_001_asn.json" rtdata.output = "jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits" rtdata.get_truth("truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/truth/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Extra keyword 'VA_DEC' in b: -5.8431461622945e-07 E Extra keyword 'VA_RA' in b: -6.9384068865357e-07 E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e84ad6460>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:61: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 388800 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing | 1.38 | |
|
_jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") # The add_wcs function overwrites its input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: add_wcs(rtdata.input, siaf_path=siaf_path) except ValueError: pytest.skip('Engineering Database not available.') rtdata.get_truth("truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits") fitsdiff_default_kwargs['rtol'] = 1e-6 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/truth/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-06, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 160 E b: 158 E Extra keyword 'DVA_DEC' in a: -5.8431461622945e-07 E Extra keyword 'DVA_RA' in a: -6.9384068865357e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83c922b0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py:99: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-02-12 01:54:19,503 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2021-02-12 01:54:19,590 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2021-02-12 01:54:19,590 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-02-12 01:54:19,590 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2021-02-12 01:54:19,591 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro 2021-02-12 01:54:19,592 - stpipe - INFO - TSO exposure: 2021-02-12 01:54:19,592 - stpipe - INFO - setting xref_sci to 769.0 2021-02-12 01:54:19,592 - stpipe - INFO - setting yref_sci to 130.0 2021-02-12 01:54:19,592 - stpipe - INFO - Updating wcs from telemetry. 2021-02-12 01:54:19,592 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-02-12 01:54:19,592 - stpipe - INFO - Telemetry search tolerance = 60 2021-02-12 01:54:19,592 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7f9e87054e50> 2021-02-12 01:54:19,639 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-02-12 01:54:19,889 - stpipe - INFO - Reduced set of pointings: 2021-02-12 01:54:19,889 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:19,889 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:19,889 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:19,890 - stpipe - INFO - Successful read of engineering quaternions: 2021-02-12 01:54:19,890 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:19,890 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:19,890 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:19,891 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-02-12 01:54:19,891 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-02-12 01:54:19,891 - stpipe - INFO - Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) 2021-02-12 01:54:19,891 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-02-12 01:54:19,892 - stpipe - INFO - Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) 2021-02-12 01:54:19,894 - stpipe - INFO - Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 2021-02-12 01:54:19,972 - stpipe - INFO - ...update completed -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=98.81825770661473, dec=-66.83269796058875, pa=142.79875484052823) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCA5_GRISM256_F444W: (-48.9162, 81.7045, 81.4025, -48.7307, -8.2035, -7.9648, 8.5541, 8.1895) INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 98.787237965 -66.839095544 98.860779512 -66.817207456 98.867664900 -66.820910995 98.794338979 -66.842692584 INFO stpipe:set_telescope_pointing.py:214 ...update completed INFO stpipe:set_telescope_pointing.py:214 ...update completed DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25217280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] | 13.64 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...truth_remote': 'jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'calints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "o006_crfints"]) def test_nircam_tsimg_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-image2 pipeline performed on NIRCam TSIMG data.""" rtdata = run_pipelines rtdata.input = "jw00312006001_02102_00001-seg001_nrcb1_rateints.fits" output = "jw00312006001_02102_00001-seg001_nrcb1_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsimg_stage23/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/truth/jw00312006001_02102_00001-seg001_nrcb1_calints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 235 E b: 233 E Extra keyword 'DVA_DEC' in a: -1.1553085596308e-07 E Extra keyword 'DVA_RA' in a: -3.0883818604768e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e855ff9d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:48: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-02-12 01:54:20,770 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:54:20,771 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:20,772 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:20,773 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:20,773 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:20,774 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:54:20,774 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:20,774 - stpipe - INFO - OS: Linux 2021-02-12 01:54:20,972 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). 2021-02-12 01:54:20,975 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:54:21,052 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-02-12 01:54:21,064 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:21,065 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-02-12 01:54:21,066 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:21,066 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-02-12 01:54:21,067 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:21,068 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:54:21,069 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-02-12 01:54:21,070 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... 2021-02-12 01:54:21,305 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-02-12 01:54:21,307 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:21,443 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:21,444 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:21,444 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:21,472 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:21,641 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-02-12 01:54:21,641 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:29,470 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-02-12 01:54:29,477 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:29,653 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2021-02-12 01:54:29,654 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:29,667 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits 2021-02-12 01:54:29,668 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-02-12 01:54:29,710 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:29,710 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-02-12 01:54:29,711 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-02-12 01:54:29,711 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-02-12 01:54:29,711 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:54:29,879 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:29,880 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 6.1144 2021-02-12 01:54:29,882 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:29,883 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2021-02-12 01:54:29,883 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:54:29,983 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits 2021-02-12 01:54:29,983 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:54:30,292 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:54:30,293 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:30,294 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:30,295 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:30,295 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:30,296 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:54:30,296 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:30,297 - stpipe - INFO - OS: Linux 2021-02-12 01:54:30,484 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). 2021-02-12 01:54:30,487 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:54:30,563 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:30,567 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:30,568 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2021-02-12 01:54:30,569 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:30,570 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2021-02-12 01:54:30,571 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... 2021-02-12 01:54:30,805 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-02-12 01:54:30,806 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:30,911 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:30,911 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2021-02-12 01:54:30,911 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:30,938 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:31,097 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-02-12 01:54:31,098 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:31,260 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2021-02-12 01:54:31,268 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:31,445 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2021-02-12 01:54:31,446 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:31,458 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits 2021-02-12 01:54:31,458 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2021-02-12 01:54:31,501 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:54:31,536 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:31,537 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 6.1144 2021-02-12 01:54:31,540 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:31,540 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2021-02-12 01:54:31,540 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:54:31,640 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits 2021-02-12 01:54:31,641 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:54:32,213 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2021-02-12 01:54:32,214 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2021-02-12 01:54:32,215 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2021-02-12 01:54:32,216 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2021-02-12 01:54:32,216 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2021-02-12 01:54:32,217 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:32,217 - stpipe - INFO - OS: Linux 2021-02-12 01:54:32,340 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). 2021-02-12 01:54:32,343 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2021-02-12 01:54:32,429 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] 2021-02-12 01:54:32,439 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. 2021-02-12 01:54:32,440 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. 2021-02-12 01:54:32,441 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2021-02-12 01:54:32,705 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-02-12 01:54:32,792 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:54:32,793 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:54:32,795 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-02-12 01:54:32,825 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-02-12 01:54:32,982 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:54:33,084 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2021-02-12 01:54:33,177 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2021-02-12 01:54:33,178 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2021-02-12 01:54:33,179 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2021-02-12 01:54:33,209 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2021-02-12 01:54:33,366 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2021-02-12 01:54:33,366 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2021-02-12 01:54:33,462 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits 2021-02-12 01:54:33,558 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits 2021-02-12 01:54:33,656 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). 2021-02-12 01:54:33,656 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2021-02-12 01:54:33,692 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2021-02-12 01:54:33,773 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). 2021-02-12 01:54:33,774 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2021-02-12 01:54:33,794 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2021-02-12 01:54:33,796 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv 2021-02-12 01:54:33,804 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso-image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:336 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0066.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.2267012997456e-14, PIXAR_A2 = 0.0009473538599634 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 6.1144 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_tso3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:188 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/outlier_detection_tso.cfg INFO stpipe.Tso3Pipeline:step.py:313 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:313 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:313 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:313 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:313 WhiteLightStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Tso3Pipeline:step.py:360 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:364 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:326 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:55 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:465 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:95 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:474 Step outlier_detection done DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:95 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:360 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:364 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'exptime', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '4.0 3.0', 'scale': '0.5 0.4', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:201 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:163 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:176 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2781 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2745 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2742 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:499 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:500 Pixels in cr_mask: 2770 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:474 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:115 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline:step.py:897 Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline.tso_photometry:step.py:360 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:364 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:474 Step tso_photometry done INFO stpipe.Tso3Pipeline.tso_photometry:step.py:360 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:364 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:160 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:474 Step tso_photometry done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:181 Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv INFO stpipe.Tso3Pipeline:step.py:474 Step Tso3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17254080 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] | 0.30 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..._remote': 'jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'o006_crfints' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["calints", "o006_crfints"]) def test_nircam_tsimg_stage2(run_pipelines, fitsdiff_default_kwargs, suffix): """Regression test of tso-image2 pipeline performed on NIRCam TSIMG data.""" rtdata = run_pipelines rtdata.input = "jw00312006001_02102_00001-seg001_nrcb1_rateints.fits" output = "jw00312006001_02102_00001-seg001_nrcb1_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_tsimg_stage23/" + output) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/truth/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 236 E b: 234 E Extra keyword 'DVA_DEC' in a: -1.1553085596308e-07 E Extra keyword 'DVA_RA' in a: -3.0883818604768e-07 E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83be56d0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:48: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing | 0.71 | |
|
_jail = '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes..., 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_setpointing(_jail, rtdata, fitsdiff_default_kwargs): """ Regression test of the set_telescope_pointing script on a level-1b NIRCam TSO imaging file. """ # Get SIAF PRD database file siaf_path = rtdata.get_data("common/prd.db") rtdata.get_data("nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") # The add_wcs function overwrites its input, so output = input rtdata.output = rtdata.input # Call the WCS routine, using the ENGDB_Service try: add_wcs(rtdata.input, siaf_path=siaf_path) except ValueError: pytest.skip('Engineering Database not available.') rtdata.get_truth("truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits") fitsdiff_default_kwargs['rtol'] = 1e-6 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/truth/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-06, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 160 E b: 161 E Inconsistent duplicates of keyword '' : E Occurs 12 time(s) in a, 13 times in (b) E Keyword [11] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [12] has different values: E a> Guide star information E b> Time information E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83abc7f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py:87: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2021-02-12 01:54:34,715 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits 2021-02-12 01:54:34,767 - stpipe - INFO - Updating WCS for aperture NRCB1_SUB64P 2021-02-12 01:54:34,767 - stpipe - INFO - Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-02-12 01:54:34,768 - stpipe - INFO - Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 2021-02-12 01:54:34,768 - stpipe - INFO - loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro 2021-02-12 01:54:34,769 - stpipe - INFO - Setting basic FITS WCS keywords for imaging 2021-02-12 01:54:34,770 - stpipe - INFO - TSO exposure: 2021-02-12 01:54:34,770 - stpipe - INFO - setting xref_sci to 32.5 2021-02-12 01:54:34,770 - stpipe - INFO - setting yref_sci to 32.5 2021-02-12 01:54:34,770 - stpipe - INFO - Updating wcs from telemetry. 2021-02-12 01:54:34,770 - stpipe - INFO - Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 2021-02-12 01:54:34,770 - stpipe - INFO - Telemetry search tolerance = 60 2021-02-12 01:54:34,770 - stpipe - INFO - Reduction function = <function pointing_from_average at 0x7f9e87054e50> 2021-02-12 01:54:34,802 - stpipe - INFO - Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ 2021-02-12 01:54:35,039 - stpipe - INFO - Reduced set of pointings: 2021-02-12 01:54:35,039 - stpipe - INFO - Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:35,040 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:35,040 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:35,040 - stpipe - INFO - Successful read of engineering quaternions: 2021-02-12 01:54:35,040 - stpipe - INFO - Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, 2021-02-12 01:54:35,041 - stpipe - INFO - -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, 2021-02-12 01:54:35,041 - stpipe - INFO - -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) 2021-02-12 01:54:35,041 - stpipe - INFO - Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. 2021-02-12 01:54:35,041 - stpipe - INFO - Setting ENGQLPTG keyword to CALCULATED 2021-02-12 01:54:35,041 - stpipe - INFO - Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) 2021-02-12 01:54:35,041 - stpipe - INFO - V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) 2021-02-12 01:54:35,043 - stpipe - INFO - Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) 2021-02-12 01:54:35,045 - stpipe - INFO - Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 2021-02-12 01:54:35,092 - stpipe - INFO - ...update completed -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits INFO stpipe:set_telescope_pointing.py:189 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:302 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1275 Using SIAF database from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1276 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1301 loaded 1 table rows from file:/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db?mode=ro INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1506 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1526 TSO exposure: INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1527 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:1528 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:432 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Determining pointing between observations times (mjd):obsstart = 58626.20879027639 obsend = 58626.2095384375 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Telemetry search tolerance = 60 INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> INFO stpipe:set_telescope_pointing.py:1148 Reduction function = <function pointing_from_average at 0x7f9e87054e50> DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 200 291674 INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ INFO stpipe:set_telescope_pointing.py:1358 Querying engineering DB: http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/ DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST1?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST2?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST3?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 405 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZATTEST4?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 404 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J11?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J12?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 446 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J13?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J21?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 434 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J22?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 455 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J23?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 447 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J31?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 449 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J32?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 439 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZRFGS2J33?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 451 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDX?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19458 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:engdb_tools.py:226 Query URL="http://twjwdmsemwebag.stsci.edu/JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23 05:00:39.480&eTime=2019-05-23 05:01:44.121" DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:227 Starting new HTTP connection (1): twjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:connectionpool.py:452 http://twjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAccSide2/TlmMnemonicDataSrv.svc/Data/SA_ZADUCMDY?sTime=2019-05-23%2005:00:39.480&eTime=2019-05-23%2005:01:44.121 HTTP/1.1" 200 19542 DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:engdb_tools.py:230 Response="<Response [200]>" DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 Memonics found: DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} DEBUG stpipe:set_telescope_pointing.py:1161 {'SA_ZATTEST1': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.646390736), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.646390855)], 'SA_ZATTEST2': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.488449484), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.488449275)], 'SA_ZATTEST3': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-0.540762842), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-0.540763)], 'SA_ZATTEST4': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=0.226211607), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=0.2262112)], 'SA_ZRFGS2J11': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0010064905509352684), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.0010066108079627156)], 'SA_ZRFGS2J12': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0033631555270403624), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0033630349207669497)], 'SA_ZRFGS2J13': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999938607215881), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999938607215881)], 'SA_ZRFGS2J21': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999995231628418), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999995231628418)], 'SA_ZRFGS2J22': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.8267732215804244e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.8389101796856266e-08)], 'SA_ZRFGS2J23': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.0010064963717013597), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.0010066165123134851)], 'SA_ZRFGS2J31': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=3.403271421120735e-06), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=3.403675691515673e-06)], 'SA_ZRFGS2J32': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=0.9999943375587463), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=0.9999943375587463)], 'SA_ZRFGS2J33': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-0.0033631538972258568), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-0.003363033290952444)], 'SA_ZADUCMDX': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=2.054101680674004e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=1.645517471310385e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=9.065390060241771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-7.585333487728971e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.187902755449055e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-2.243936594424446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=9.945701845111932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=3.236966113573333e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=2.829681021021752e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=1.955749297065702e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=8.84061819109959e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-9.211604630898101e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.002682819267956e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=1.127240000581951e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=3.107133547412391e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=2.626319315586247e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=1.923079818949141e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=1.059115475328294e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=5.992764396634226e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-9.484639784582766e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=2.30054237676489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=3.419164555000002e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=3.000308859636968e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=2.072312646427424e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=1.059785990538242e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=1.217744597956109e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=5.310739501843006e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=3.104634537601262e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=2.494944405986285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=1.820219908641121e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=9.626861366794207e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.091457345369277e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=1.953224834272641e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=4.018545060352061e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=3.696337120987182e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=2.888046226976796e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=1.843001982475252e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=8.91535922868344e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=3.79652507088095e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-8.992479703193302e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=2.304103575268043e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=2.253031580878675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=1.676691842861887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=6.702587141659578e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-4.21639216253057e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.390573151999384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-2.358996912858541e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=6.961247164896458e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=4.006715343517192e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-3.459037716613465e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.280884227313337e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-1.752604212142243e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=5.962505140661087e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=1.427993626923818e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-6.208174370469097e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-1.581372384422605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-2.714654820125855e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-3.258708509789349e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=2.229979016546991e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=4.435807245462249e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-6.536917349446795e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-1.660460703579343e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-2.877172747504753e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.067071276103384e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-3.233547643736661e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.367699962385416e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.974877206948282e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-3.135790339070758e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.178650427637777e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=7.876019596612103e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=2.316317740149186e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-7.282737849544346e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.892333149868419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-2.893667325680135e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=2.942271463967992e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=1.158224491097148e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=5.403059339676849e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-2.455860011478806e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-1.160581551002032e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-1.585725636040655e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=2.056457063796825e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=2.082164989494129e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=1.531374435908757e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=5.749545017898732e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-4.384048611677362e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.332688123039446e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-9.441093568785567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=2.284350149704047e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=2.198155571074844e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=1.644543246811773e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=8.540246472625156e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-1.164862029705631e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.16567903145421e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=2.045813230516044e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=3.179978443950511e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=2.639516983722531e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=1.730815323242029e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=8.100403707498966e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-3.16578059546886e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-9.023015180723653e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=1.161974409595051e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=3.173376727923237e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=2.757941823966934e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=2.063578960167011e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=1.127986633252186e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=9.63184704152848e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-8.252737848148106e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-1.040711666842328e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=2.713150894388727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=2.626604034300233e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=2.01280472567675e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=1.154188879589524e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=1.356519636794452e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-2.766474237477928e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=1.590181572739873e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=9.206983179160388e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=2.29808613028442e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-6.966319150675227e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.104663314759827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=1.284930249434865e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=1.19296470209635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=5.035377141382567e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-4.781960537970699e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.601388598271299e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-8.91849900972027e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=9.559667781006223e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=4.600224790694582e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-4.400224398927377e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.546108067219792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-2.061297773911856e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=1.615286535088947e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=1.535968919429312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=8.498332362719613e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-2.098156940582237e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.337879360340443e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.67141082491648e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=9.988908342361434e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=7.325106414431445e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-7.325305248755593e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.058173585169708e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-2.006181770013836e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-6.763292600666975e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=1.768710390313191e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=1.29025408437153e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=5.400606787810531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-4.657344081356155e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.551556950959166e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-2.636587555453805e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=6.28691366703708e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=1.715257973234268e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=1.158848001087747e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=2.009978174258476e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-8.890006814228543e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.859965057114357e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-2.786631365485037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-2.604216562290827e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=5.082987726693784e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=4.671388652404397e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.552332848243807e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.221604439974964e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-2.406850140816402e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-3.485926802099318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-2.605244989999788e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=3.212577063705128e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-2.361635772676323e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.035742075232819e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-2.160158464348133e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-3.335506411943285e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-3.697253534894322e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=3.995580675698183e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.571865272722529e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-9.624766764926133e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-2.037871174663682e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-3.062093903124459e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-4.040728998078301e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-3.345596734356317e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-2.963170576896782e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-8.901016857766165e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-1.662265565796219e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-2.71220188449731e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-3.889646309761289e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-4.913337568279872e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-2.909663958839993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-9.659094812995899e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-1.599648582775312e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-2.613038199007449e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-3.678919034336953e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-4.722068846031879e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-3.480259716384782e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-3.261823700495823e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-4.146453889114645e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-3.822511689182599e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-3.757074692614817e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-4.731357659265142e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-2.85608381411009e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.667837595843178e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-1.509407774437034e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-2.512928591227125e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-3.689587152295465e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-4.874392905344496e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-1.700218089600596e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-6.52768539794697e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-1.229981357772518e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-2.189216656080245e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-3.298931497210722e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-3.604995842685727e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=2.10873754000662e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=2.223227088195779e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-4.619978628866798e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.422375487571096e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-2.316079101421595e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-2.514405533697998e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=1.211511870306144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=1.159206077105583e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=6.57128038831026e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-6.724591106045747e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-1.021538312790992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.994792779049222e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-2.825446290747771e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=5.811540465278214e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=4.715709984108319e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.843769711759862e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-9.97894725304771e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-1.864594279797497e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=1.734777912873341e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=2.129905204869845e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=1.656847578005342e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=9.621357948543575e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=1.078460614119963e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-8.832839417061932e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.877423739549408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=1.48773318128144e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=2.646216878512227e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=2.112247288338566e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=1.225671454235736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=3.434560289177547e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-4.958790500187293e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-8.044252455777791e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=5.699850897897742e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=5.137817734023744e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-8.033516834356671e-10), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=2.565904659590611e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-7.413415955568531e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.5913264865218e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=5.349528006405965e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=2.499612315153318e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=1.962542100813489e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=1.090167364619697e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=1.39303072920915e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-8.295835693225364e-09), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.872097979973344e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=1.27904567456059e-08)], 'SA_ZADUCMDY': [EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.666>, value=-1.204857190742565e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587639.922>, value=-1.097634018761027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.178>, value=-8.645867646251425e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.434>, value=-8.909266012926419e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.69>, value=-1.080581591290595e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587640.946>, value=-1.244576320076857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.202>, value=-1.13329611753107e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.458>, value=-8.832090359452605e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.714>, value=-7.89663098323854e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587641.97>, value=-9.549248883674884e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.226>, value=-1.171696556403256e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.482>, value=-1.220979439629442e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.738>, value=-1.004950466505763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587642.995>, value=-9.192211717719791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.251>, value=-1.090813283356734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.507>, value=-1.303343643127177e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587643.763>, value=-1.135950240094259e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.019>, value=-8.981587718803154e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.275>, value=-1.024205400785786e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.531>, value=-1.222196138779408e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587644.787>, value=-1.265985741383533e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.043>, value=-1.050473758220247e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.299>, value=-8.539811055107792e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.555>, value=-1.030984746060476e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587645.811>, value=-1.241033812768268e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.067>, value=-1.188348941910562e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.323>, value=-9.601813923738899e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.579>, value=-1.095333699193234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587646.835>, value=-1.292826592577174e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.091>, value=-1.235270854984419e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.347>, value=-1.011951008150031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.603>, value=-1.038245634104295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587647.859>, value=-1.227643707289295e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.115>, value=-1.15716819745021e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.371>, value=-9.327051895208993e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.627>, value=-1.068773619274936e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587648.883>, value=-1.269203225958857e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.139>, value=-1.212328268406808e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.395>, value=-9.859358582710408e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.651>, value=-1.117571808277591e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587649.907>, value=-1.253826292250114e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.163>, value=-1.14394130120612e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.419>, value=-9.717993402202037e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.675>, value=-1.153075127430516e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587650.931>, value=-1.2993349085035e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.187>, value=-1.087835824953556e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.443>, value=-9.023404251157977e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.699>, value=-1.081536406440154e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587651.955>, value=-1.287847557351723e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.212>, value=-1.239057595002891e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.468>, value=-1.002061118448125e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.724>, value=-9.213368375526734e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587652.98>, value=-1.098033892304257e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.236>, value=-1.311152476506629e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.492>, value=-1.148201724507124e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587653.748>, value=-9.093640626036499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.004>, value=-9.260458422579863e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.26>, value=-1.109943525816521e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.516>, value=-1.33053049280658e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587654.772>, value=-1.278770519987344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.028>, value=-1.050696527374567e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.284>, value=-8.44882006747713e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.54>, value=-1.013795029974883e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587655.796>, value=-1.222504880958979e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.052>, value=-1.167318176993266e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.308>, value=-9.439944611063277e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.564>, value=-1.075265999890234e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587656.82>, value=-1.271140892666929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.076>, value=-1.088660340235933e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.332>, value=-8.335761212247016e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.588>, value=-8.49152646368338e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587657.844>, value=-1.032469985464133e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.1>, value=-1.252551387521943e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.356>, value=-1.089793384107206e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.612>, value=-8.935037816153822e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587658.868>, value=-1.064015452596791e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.124>, value=-1.198565219204449e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.38>, value=-9.734662397338659e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.636>, value=-7.813109972550033e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587659.892>, value=-9.547455939815579e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.148>, value=-1.161369167660671e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.404>, value=-9.924352427819172e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.66>, value=-8.104868553671813e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587660.916>, value=-9.821158561006358e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.172>, value=-1.182979472149436e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.428>, value=-1.009043954245089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.684>, value=-8.211737397652062e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587661.94>, value=-9.945454910473175e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.196>, value=-1.19594970758328e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.453>, value=-1.024658716056604e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.709>, value=-7.820103525321668e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587662.965>, value=-9.032530692233291e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.221>, value=-1.095056131885681e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.477>, value=-1.130903927721902e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.733>, value=-9.068453473165832e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587663.989>, value=-1.036135452443044e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.245>, value=-1.230668618216418e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.501>, value=-1.165095400180527e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587664.757>, value=-9.38725312381007e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.013>, value=-8.526758831203498e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.269>, value=-1.030962206322772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.525>, value=-1.247329886986431e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587665.781>, value=-1.196360974610781e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.037>, value=-9.721743393105049e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.293>, value=-9.935437680334536e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.549>, value=-1.178896442418716e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587666.805>, value=-1.117555832568825e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.061>, value=-8.91422000241469e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.317>, value=-1.025265169500708e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.573>, value=-1.226148703059543e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587667.829>, value=-1.168512725741538e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.085>, value=-9.445867517829644e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.341>, value=-9.687700626503174e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.597>, value=-1.15454891304585e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587668.853>, value=-1.316884452680722e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.109>, value=-1.212193626140078e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.365>, value=-9.800673484952992e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.621>, value=-9.982340140952694e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587669.877>, value=-1.185270639448007e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.133>, value=-1.412245386487547e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.389>, value=-1.25761955785303e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.645>, value=-1.022099711158802e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587670.901>, value=-1.044144671036666e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.157>, value=-1.231618446279472e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.413>, value=-1.463371525233354e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.669>, value=-1.298010125051734e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587671.925>, value=-1.0653533198746e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.181>, value=-1.088527053014006e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.437>, value=-1.277960233108392e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.694>, value=-1.507422313323568e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587672.95>, value=-1.451139141607747e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.206>, value=-1.227241150274941e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.462>, value=-1.14789216849996e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.718>, value=-1.329148911845911e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587673.974>, value=-1.493290154889931e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.23>, value=-1.287785070326407e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.486>, value=-1.036521828131396e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.742>, value=-1.169698650789339e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587674.998>, value=-1.374944629462783e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.254>, value=-1.431146323309306e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.51>, value=-1.228103136661729e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587675.766>, value=-1.266541548868094e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.022>, value=-1.460916947042983e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.278>, value=-1.40111283668642e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.534>, value=-1.178811773605603e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587676.79>, value=-1.206365348837772e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.046>, value=-1.396605116840692e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.302>, value=-1.565657231373949e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.558>, value=-1.343017246437311e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587677.814>, value=-1.091312439838139e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.07>, value=-1.109496571340027e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.326>, value=-1.299533647225889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.582>, value=-1.52858004797951e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587678.838>, value=-1.369900977157764e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.094>, value=-1.136393881925429e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.35>, value=-1.26761165807494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.606>, value=-1.467119031425197e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587679.862>, value=-1.297936829120871e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.118>, value=-1.064315025746448e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.374>, value=-1.192940969223137e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.63>, value=-1.391819262904344e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587680.886>, value=-1.334616382398995e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.142>, value=-1.168279126871889e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.398>, value=-1.353216307474929e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.654>, value=-1.275248643102148e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587681.911>, value=-1.10747335123172e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.167>, value=-1.290801896583977e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.423>, value=-1.384985380330301e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.679>, value=-1.215788466203546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587682.935>, value=-9.525500760087915e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.191>, value=-1.07218736591186e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.447>, value=-1.26769530455505e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.703>, value=-1.431473095532922e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587683.959>, value=-1.216414546485479e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.215>, value=-9.62811018009195e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.471>, value=-1.081085570522201e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.727>, value=-1.273596905890898e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587684.983>, value=-1.210433143366299e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.239>, value=-9.84116905667519e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.495>, value=-1.005948432650043e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587685.751>, value=-1.188425605834281e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.007>, value=-1.117573701734905e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.263>, value=-8.756873449133586e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.519>, value=-7.712216264948506e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587686.775>, value=-9.339552052322059e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.031>, value=-1.140940789224628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.287>, value=-1.076498968101335e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.543>, value=-8.396416671176601e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587687.799>, value=-9.587418300676637e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.055>, value=-1.144105966575031e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.311>, value=-1.068210526627624e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.567>, value=-8.238955272817639e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587688.823>, value=-7.240215001368657e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.079>, value=-8.918080295575223e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.335>, value=-1.101235779960446e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.591>, value=-9.204973759682887e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587689.847>, value=-6.727207022449791e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.103>, value=-7.925255075710892e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.359>, value=-9.75171713227736e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.615>, value=-1.189195146735586e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587690.871>, value=-9.985039520149404e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.127>, value=-7.390979191373265e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.383>, value=-7.438405542263826e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.639>, value=-9.20406453962098e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587691.895>, value=-1.137199555783643e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.152>, value=-1.074405985865578e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.408>, value=-8.217879361529371e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.664>, value=-7.279568928396239e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587692.92>, value=-8.96138005788397e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.176>, value=-1.110318593435478e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.432>, value=-9.459394998584776e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.688>, value=-7.690949227286635e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587693.944>, value=-9.468883499431616e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.2>, value=-1.151244826502903e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.456>, value=-9.796761436670766e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.712>, value=-7.387925812046543e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587694.968>, value=-8.636666730513867e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.224>, value=-1.065073550002269e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.48>, value=-1.005391723623546e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.736>, value=-7.616487977253913e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587695.992>, value=-8.914200303821921e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.248>, value=-1.089921390465959e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.504>, value=-1.027195767354827e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587696.76>, value=-8.00411865878689e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.016>, value=-8.265481668626987e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.272>, value=-1.015624114550272e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.528>, value=-1.175386906834945e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587697.784>, value=-9.607362047246041e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.04>, value=-7.722730086211448e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.296>, value=-9.472565776403772e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.552>, value=-1.155746111979283e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587698.808>, value=-9.761175437508228e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.064>, value=-7.943293441434763e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.32>, value=-9.7317968453017e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.576>, value=-1.181377874111116e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587699.832>, value=-1.125919654779089e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.088>, value=-9.018117087957499e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.344>, value=-1.036876546934763e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.6>, value=-1.238650339897071e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587700.856>, value=-1.184257543431906e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.112>, value=-9.655135303192985e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.368>, value=-9.955505590920716e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.624>, value=-1.188758712949494e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587701.88>, value=-1.134133333995795e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.136>, value=-9.025521142831201e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.393>, value=-9.277512969101686e-08), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.649>, value=-1.119570009511285e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587702.905>, value=-1.170479309148598e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.161>, value=-1.071866793275628e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.417>, value=-1.012072625030984e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.673>, value=-1.192857522662042e-07), EngDB_Value(obstime=<Time object: scale='utc' format='unix' value=1558587703.929>, value=-1.34829583577703e-07)]} INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Reduced set of pointings: INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:1162 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:467 Successful read of engineering quaternions: INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 Pointing = Pointing(q=array([ 0.6463908 , 0.48844938, -0.54076292, 0.2262114 ]), j2fgs_matrix=array([-1.00655068e-03, 3.36309522e-03, 9.99993861e-01, 9.99999523e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -1.83284170e-08, 1.00655644e-03, 3.40347356e-06, 9.99994338e-01, INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:468 -3.36309359e-03]), fsmcorr=array([-2.32249621e-09, -1.08980794e-07]), obstime=<Time object: scale='utc' format='unix' value=1558587687.543>) INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. INFO stpipe:set_telescope_pointing.py:932 Using J-Frame to FGS1 engineering parameters for the J-Frame to FGS1 transformation. DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:970 Using version latest DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec DEBUG stpipe:set_telescope_pointing.py:971 Using units arcsec INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:472 Setting ENGQLPTG keyword to CALCULATED INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:484 Aperture WCS info: WCSRef(ra=99.0135777003569, dec=-66.81781129632121, pa=143.57702860735037) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:485 V1 WCS info: WCSRef(ra=99.10982762127132, dec=-66.93781692183904, pa=142.98575386751267) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:set_telescope_pointing.py:540 Vertices for aperture NRCB1_SUB64P: (-0.9783, 0.9785, 0.9782, -0.978, -0.9841, -0.978, 0.9842, 0.9782) INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:util.py:934 Update S_REGION to POLYGON ICRS 99.012609926 -66.817752684 99.013723527 -66.817431316 99.014545464 -66.817869942 99.013432237 -66.818191239 INFO stpipe:set_telescope_pointing.py:214 ...update completed INFO stpipe:set_telescope_pointing.py:214 ...update completed DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_setpointing/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 195840 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] | 13.87 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00001_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00001_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 260 E b: 261 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e83a23d60>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -----------------------------Captured stderr setup------------------------------ 2021-02-12 01:54:37,117 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:54:37,118 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:54:37,119 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:54:37,119 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:54:37,120 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:54:37,121 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:54:37,121 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:37,121 - stpipe - INFO - OS: Linux 2021-02-12 01:54:37,279 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). 2021-02-12 01:54:37,282 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:54:37,408 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:54:37,420 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:54:37,421 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. 2021-02-12 01:54:37,422 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:54:37,422 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. 2021-02-12 01:54:37,423 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:54:37,424 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:54:37,425 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:54:37,431 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00001_nrca4 2021-02-12 01:54:37,431 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00001_nrca4_rate.fits ... 2021-02-12 01:54:37,630 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:37,631 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:37,747 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-02-12 01:54:37,792 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 2021-02-12 01:54:37,792 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 2021-02-12 01:54:37,793 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:37,843 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:37,954 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:37,955 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:41,654 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:41,742 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:41,743 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:41,755 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-02-12 01:54:41,755 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-02-12 01:54:41,817 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-02-12 01:54:42,338 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:42,339 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-02-12 01:54:42,358 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:42,448 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2021-02-12 01:54:42,449 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:54:42,449 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00001_nrca4 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00002_nrca4 2021-02-12 01:54:42,450 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00002_nrca4_rate.fits ... 2021-02-12 01:54:42,627 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:42,628 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:54:42,706 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2021-02-12 01:54:42,784 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 2021-02-12 01:54:42,784 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 2021-02-12 01:54:42,784 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:54:42,830 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:54:42,911 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:42,912 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:54:43,216 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:54:43,306 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:43,306 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2021-02-12 01:54:43,318 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits 2021-02-12 01:54:43,318 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2021-02-12 01:54:43,384 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2021-02-12 01:54:43,412 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:54:43,413 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 42.7118 2021-02-12 01:54:43,431 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:54:43,517 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2021-02-12 01:54:43,518 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:54:43,518 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2021-02-12 01:54:43,519 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:54:43,519 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00002_nrca4 2021-02-12 01:54:43,519 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:54:43,667 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00001_nrca4_cal.fits 2021-02-12 01:54:43,815 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00002_nrca4_cal.fits 2021-02-12 01:54:43,815 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2021-02-12 01:54:44,100 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-02-12 01:54:44,100 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:44,100 - stpipe - INFO - OS: Linux 2021-02-12 01:54:44,228 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). 2021-02-12 01:54:44,228 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} 2021-02-12 01:54:44,236 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json 2021-02-12 01:54:44,236 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-02-12 01:54:44,359 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-02-12 01:54:44,360 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-02-12 01:54:44,360 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 2021-02-12 01:54:44,360 - stpipe.WfsCombine - INFO - do_refine: False 2021-02-12 01:54:44,555 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -3 -2 2021-02-12 01:54:45,137 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits 2021-02-12 01:54:45,137 - stpipe.WfsCombine - INFO - Step WfsCombine done 2021-02-12 01:54:45,416 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2021-02-12 01:54:45,416 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:54:45,416 - stpipe - INFO - OS: Linux 2021-02-12 01:54:45,667 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). 2021-02-12 01:54:45,669 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} 2021-02-12 01:54:45,677 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json 2021-02-12 01:54:45,677 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2021-02-12 01:54:45,806 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2021-02-12 01:54:45,807 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2021-02-12 01:54:45,807 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine 2021-02-12 01:54:45,807 - stpipe.WfsCombine - INFO - do_refine: True 2021-02-12 01:54:46,621 - stpipe.WfsCombine - INFO - Approximate centroid of image 1 PSF has x,y : 1695 1713 2021-02-12 01:54:47,221 - stpipe.WfsCombine - INFO - From the refined offsets calculation,the x,y changes in ofsets are: 2 0 2021-02-12 01:54:47,221 - stpipe.WfsCombine - INFO - Values for the refined offsets are, for x,y : -1 -2 2021-02-12 01:54:47,221 - stpipe.WfsCombine - INFO - Final x,y offset in pixels: -1 -2 2021-02-12 01:54:48,009 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits 2021-02-12 01:54:48,009 - stpipe.WfsCombine - INFO - Step WfsCombine done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input jw00632003002_03105_00001_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482812 -72.047891334 5.643201228 -72.030311705 5.586537894 -72.030260713 5.586146170 -72.047933021 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input jw00632003002_03105_00002_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:454 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397062 -72.047873723 5.643115479 -72.030294094 5.586452198 -72.030243101 5.586060475 -72.047915409 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0070.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 2.24693051525911e-14, PIXAR_A2 = 0.0009559604141532 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 42.7118 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:394 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:313 WfsCombineStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.WfsCombine:step.py:360 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). INFO stpipe.WfsCombine:step.py:364 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: False DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -3 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:897 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits INFO stpipe.WfsCombine:step.py:474 Step WfsCombine done DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_wfs-image3.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:313 WfsCombineStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.WfsCombine:step.py:360 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). INFO stpipe.WfsCombine:step.py:364 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True} INFO stpipe.WfsCombine:wfs_combine_step.py:25 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:26 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:64 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:65 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:66 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:67 do_refine: True DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:159 Approximate centroid of image 1 PSF has x,y : 1695 1713 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:187 From the refined offsets calculation,the x,y changes in ofsets are: 2 0 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:195 Values for the refined offsets are, for x,y : -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 INFO stpipe.WfsCombine:wfs_combine.py:198 Final x,y offset in pixels: -1 -2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:897 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits INFO stpipe.WfsCombine:step.py:474 Step WfsCombine done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117529920 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] | 1.24 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632003002_03105_00002_nrca4_cal.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632003002_03105_00002_nrca4_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 260 E b: 261 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E Keyword VA_DEC has different comments: E b> [deg] Velocity aberrated apparent reference Dec E Keyword VA_RA has different comments: E b> [deg] Velocity aberrated apparent reference RA E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e854e04f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117529920 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] | 0.54 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...remote': 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 249 E b: 252 E Extra keyword 'VA_DEC' in b: -5.8373979160814e-07 E Extra keyword 'VA_RA' in b: -8.0042781085677e-07 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85eb2fd0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] | 0.59 | |
|
run_pipelines = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...: 'jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output",[ "jw00632003002_03105_00001_nrca4_cal.fits", "jw00632003002_03105_00002_nrca4_cal.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits", "jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits"], ids=["cal1", "cal2", "wfscmb1", "wfscmb2"]) def test_nircam_wfsimage(run_pipelines, fitsdiff_default_kwargs, output): """Regression test of the calwebb_wfs-image2 and calwebb_wfs-image3 pipelines on a dithered pair of NIRCam images.""" # Run the pipeline and retrieve outputs rtdata = run_pipelines rtdata.output = output # Get the truth files rtdata.get_truth(os.path.join("truth/nircam/test_wfs-image2and3", output)) # Compare the results diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.2 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/truth/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 249 E b: 252 E Extra keyword 'VA_DEC' in b: -5.8373979160814e-07 E Extra keyword 'VA_RA' in b: -8.0042781085677e-07 E Inconsistent duplicates of keyword '' : E Occurs 48 time(s) in a, 49 times in (b) E Keyword [12] has different values: E a> Time information E b> Velocity aberration correction information E Keyword [13] has different values: E a> NIRCam Focus Adjust Mechanism parameters E b> Time information E Keyword [14] has different values: E a> Guide star information E b> NIRCam Focus Adjust Mechanism parameters E Keyword [15] has different values: E a> Reference file information E b> Guide star information E Keyword [16] has different values: E a> CRDS parameters E b> Reference file information E Keyword [17] has different values: E a> Pixel area reference file information E b> CRDS parameters E Keyword [18] has different values: E a> Nirspec Camera reference file information E ? ^ -- --- ---- E b> Pixel area reference file information E ? ^ +++++ E Keyword [19] has different values: E a> Nirspec Collimator reference file information E ? ^^^^ --- E b> Nirspec Camera reference file information E ? ^ ++ E Keyword [20] has different values: E a> Dark reference file information E ? ^ - E b> Nirspec Collimator reference file information E ? ^^^^^^^^^^^^^^ ++ E Keyword [21] has different values: E a> Disperser reference file information E ? ^^^^ ^^^ E b> Dark reference file information E ? ^ ^ E Keyword [22] has different values: E a> Distortion reference file information E ? ^^ ^^^^ E b> Disperser reference file information E ? ^^ ^^^ E Keyword [23] has different values: E a> Filter Offset reference file information E ? ^ ^ ^ ------ E b> Distortion reference file information E ? ^ ^ ^ +++ E Keyword [24] has different values: E a> Flat reference file information E ? - E b> Filter Offset reference file information E ? + +++++++++ E Keyword [25] has different values: E a> DFlat reference file information E ? - E b> Flat reference file information E Keyword [26] has different values: E a> FFlat reference file information E ? ^ E b> DFlat reference file information E ? ^ E Keyword [27] has different values: E a> SFlat reference file information E ? ^ E b> FFlat reference file information E ? ^ E Keyword [28] has different values: E a> Nirspec FORE Model reference file information E ? ^^^^^^^^ -------- E b> SFlat reference file information E ? ^ ++ E Keyword [29] has different values: E a> Nirspec FPA Model reference file information E ? ^^ E b> Nirspec FORE Model reference file information E ? ^^^ E Keyword [30] has different values: E a> Gain reference file information E b> Nirspec FPA Model reference file information E Keyword [31] has different values: E a> IFU fore reference file information E ? ^^^^^^^^ E b> Gain reference file information E ? ^^^^ E Keyword [32] has different values: E a> IFU post reference file information E ? ^ ^^ E b> IFU fore reference file information E ? ^ ^^ E Keyword [33] has different values: E a> IFU slicer reference file information E ? ^^^^^ E b> IFU post reference file information E ? ++ ^ E Keyword [34] has different values: E a> Linearity reference file information E ? ^ ^ - --- E b> IFU slicer reference file information E ? ^^^^^^ ^ E Keyword [35] has different values: E a> Mask reference file information E ? ^ ^^ E b> Linearity reference file information E ? ^^^^ ^^^^ E Keyword [36] has different values: E a> Nirspec MSA Model reference file information E b> Mask reference file information E Keyword [37] has different values: E a> Nirspec OTE Model reference file information E ? ^^^ E b> Nirspec MSA Model reference file information E ? ^^^ E Keyword [38] has different values: E a> Persistence saturation reference file information E b> Nirspec OTE Model reference file information E Keyword [39] has different values: E a> Photometric reference file information E b> Persistence saturation reference file information E Keyword [40] has different values: E a> Read noise reference file information E ? ^ ^^^^^ ^^ E b> Photometric reference file information E ? ^^^^^^ ^^ ^ E Keyword [41] has different values: E a> Regions reference file information E ? ^ -- E b> Read noise reference file information E ? ^^^^^ + E Keyword [42] has different values: E a> Saturation reference file information E ? ^^^^^^^ E b> Regions reference file information E ? ^^^ + E Keyword [43] has different values: E a> Spectral distortion reference file information E ? ^^^ -------- E b> Saturation reference file information E ? ^ + E Keyword [44] has different values: E a> Superbias reference file information E ? - ^ - E b> Spectral distortion reference file information E ? ++ ^^^^ +++++++ E Keyword [45] has different values: E a> Trap density reference file information E ? ^ ----- --- E b> Superbias reference file information E ? ^^^^ ++ E Keyword [46] has different values: E a> Trap parameters reference file information E ? ^^^^^ ^^^ E b> Trap density reference file information E ? ^ +++ ^ E Keyword [47] has different values: E a> Wavelength Range reference file information E b> Trap parameters reference file information E Keyword [48] has different values: E a> Calibration step information E b> Wavelength Range reference file information E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Headers have different number of cards: E a: 78 E b: 77 E Inconsistent duplicates of keyword '' : E Occurs 5 time(s) in a, 4 times in (b) E Keyword has different values: E a> Velocity aberration correction information E b> Photometry information E Keyword [2] has different values: E a> Photometry information E b> Information about the coordinates in the file E Keyword [3] has different values: E a> Information about the coordinates in the file E b> Spacecraft pointing information E Keyword [4] has different values: E a> Spacecraft pointing information E b> WCS parameters E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f9e85884d00>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_wfs.py:66: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] | 87.27 | |
|
-----------------------------Captured stderr setup------------------------------ 2021-02-12 01:47:33,394 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2021-02-12 01:47:33,394 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2021-02-12 01:47:33,395 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2021-02-12 01:47:33,396 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2021-02-12 01:47:33,396 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2021-02-12 01:47:33,397 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2021-02-12 01:47:33,398 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2021-02-12 01:47:33,398 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2021-02-12 01:47:33,399 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2021-02-12 01:47:33,399 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2021-02-12 01:47:33,400 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2021-02-12 01:47:33,400 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2021-02-12 01:47:33,401 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2021-02-12 01:47:33,402 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2021-02-12 01:47:33,403 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2021-02-12 01:47:33,403 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2021-02-12 01:47:33,404 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2021-02-12 01:47:33,404 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:47:33,404 - stpipe - INFO - OS: Linux 2021-02-12 01:47:33,668 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). 2021-02-12 01:47:33,676 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} 2021-02-12 01:47:33,934 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2021-02-12 01:47:33,958 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. 2021-02-12 01:47:33,959 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2021-02-12 01:47:33,960 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. 2021-02-12 01:47:33,961 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits'. 2021-02-12 01:47:33,962 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0016.fits'. 2021-02-12 01:47:33,963 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2021-02-12 01:47:33,964 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2021-02-12 01:47:33,964 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2021-02-12 01:47:33,964 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2021-02-12 01:47:33,964 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. 2021-02-12 01:47:33,965 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. 2021-02-12 01:47:33,965 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. 2021-02-12 01:47:33,966 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. 2021-02-12 01:47:33,967 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2021-02-12 01:47:34,352 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2021-02-12 01:47:34,353 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:47:34,360 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed 2021-02-12 01:47:34,360 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2021-02-12 01:47:34,360 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2021-02-12 01:47:34,435 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2021-02-12 01:47:34,436 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:47:34,445 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits 2021-02-12 01:47:34,685 - stpipe.Detector1Pipeline.dq_init - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:34,760 - stpipe.Detector1Pipeline.dq_init - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:35,220 - stpipe.Detector1Pipeline.dq_init - INFO - Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits 2021-02-12 01:47:35,220 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2021-02-12 01:47:35,305 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). 2021-02-12 01:47:35,306 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:47:35,315 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits 2021-02-12 01:47:35,752 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:35,752 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:35,753 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:35,753 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:35,753 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:36,360 - stpipe.Detector1Pipeline.saturation - INFO - Detected 35212 saturated pixels 2021-02-12 01:47:36,381 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2021-02-12 01:47:36,658 - stpipe.Detector1Pipeline.saturation - INFO - Saved model in jw42424001001_01101_00001_nrca5_saturation.fits 2021-02-12 01:47:36,659 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2021-02-12 01:47:36,759 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2021-02-12 01:47:36,760 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:47:36,760 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2021-02-12 01:47:36,760 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2021-02-12 01:47:36,834 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2021-02-12 01:47:36,834 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:47:36,843 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits 2021-02-12 01:47:37,652 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:38,135 - stpipe.Detector1Pipeline.superbias - INFO - Saved model in jw42424001001_01101_00001_nrca5_superbias.fits 2021-02-12 01:47:38,135 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2021-02-12 01:47:38,235 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). 2021-02-12 01:47:38,236 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2021-02-12 01:47:38,242 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2021-02-12 01:47:38,242 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2021-02-12 01:47:38,242 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2021-02-12 01:47:38,242 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2021-02-12 01:47:38,243 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2021-02-12 01:47:42,334 - stpipe.Detector1Pipeline.refpix - INFO - Saved model in jw42424001001_01101_00001_nrca5_refpix.fits 2021-02-12 01:47:42,335 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2021-02-12 01:47:42,442 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). 2021-02-12 01:47:42,443 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:47:42,453 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits 2021-02-12 01:47:43,651 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:43,651 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:43,651 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:43,651 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:43,651 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:43,652 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:43,652 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:44,698 - stpipe.Detector1Pipeline.linearity - INFO - Saved model in jw42424001001_01101_00001_nrca5_linearity.fits 2021-02-12 01:47:44,699 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2021-02-12 01:47:44,791 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2021-02-12 01:47:44,792 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2021-02-12 01:47:45,833 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:47:48,659 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits 2021-02-12 01:47:48,660 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2021-02-12 01:47:48,773 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2021-02-12 01:47:48,773 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} 2021-02-12 01:47:48,784 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits 2021-02-12 01:48:10,180 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:48:10,181 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2021-02-12 01:48:10,182 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=7, nframes=1, groupgap=1 2021-02-12 01:48:10,182 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=108, nframes=1, groupgap=0 2021-02-12 01:48:11,613 - stpipe.Detector1Pipeline.dark_current - INFO - Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits 2021-02-12 01:48:11,613 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2021-02-12 01:48:12,147 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). 2021-02-12 01:48:12,148 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0} 2021-02-12 01:48:12,156 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 50 sigma 2021-02-12 01:48:12,160 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2021-02-12 01:48:15,410 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2021-02-12 01:48:15,572 - stpipe.Detector1Pipeline.jump - INFO - Found 32 possible cores to use for jump detection 2021-02-12 01:48:15,833 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2021-02-12 01:48:16,116 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2021-02-12 01:48:17,616 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 4713 pixels with at least one CR 2021-02-12 01:48:17,962 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 2.12814 sec 2021-02-12 01:48:17,963 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 5.806466 2021-02-12 01:48:18,276 - stpipe.Detector1Pipeline.jump - INFO - Saved model in jw42424001001_01101_00001_nrca5_jump.fits 2021-02-12 01:48:18,277 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2021-02-12 01:48:18,395 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-02-12 01:48:18,396 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2021-02-12 01:48:18,414 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2021-02-12 01:48:18,431 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2021-02-12 01:48:18,454 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2021-02-12 01:48:18,455 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2021-02-12 01:48:41,078 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 7 2021-02-12 01:48:41,078 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2021-02-12 01:48:41,210 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2021-02-12 01:48:41,334 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-02-12 01:48:41,335 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:48:41,366 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-02-12 01:48:41,366 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-02-12 01:48:41,367 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-02-12 01:48:41,445 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2021-02-12 01:48:41,446 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2021-02-12 01:48:41,473 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2021-02-12 01:48:41,473 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2021-02-12 01:48:41,474 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2021-02-12 01:48:41,571 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rateints.fits 2021-02-12 01:48:41,572 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2021-02-12 01:48:41,667 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rate.fits 2021-02-12 01:48:41,667 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done 2021-02-12 01:48:41,745 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2021-02-12 01:48:41,746 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2021-02-12 01:48:41,747 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2021-02-12 01:48:41,747 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2021-02-12 01:48:41,748 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2021-02-12 01:48:41,749 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2021-02-12 01:48:41,749 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2021-02-12 01:48:41,749 - stpipe - INFO - OS: Linux 2021-02-12 01:48:41,924 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). 2021-02-12 01:48:41,927 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2021-02-12 01:48:41,950 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2021-02-12 01:48:41,977 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2021-02-12 01:48:41,978 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2021-02-12 01:48:41,978 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2021-02-12 01:48:41,978 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2021-02-12 01:48:41,978 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2021-02-12 01:48:41,978 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2021-02-12 01:48:41,979 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2021-02-12 01:48:41,980 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2021-02-12 01:48:41,980 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2021-02-12 01:48:41,981 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2021-02-12 01:48:41,982 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2021-02-12 01:48:41,983 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2021-02-12 01:48:41,984 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... 2021-02-12 01:48:42,092 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). 2021-02-12 01:48:42,093 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2021-02-12 01:48:42,294 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2021-02-12 01:48:42,294 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2021-02-12 01:48:42,294 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2021-02-12 01:48:42,468 - stpipe.Image2Pipeline.assign_wcs - INFO - Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits 2021-02-12 01:48:42,468 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2021-02-12 01:48:42,554 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). 2021-02-12 01:48:42,555 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2021-02-12 01:48:48,044 - stpipe.Image2Pipeline.flat_field - INFO - Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits 2021-02-12 01:48:48,044 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2021-02-12 01:48:48,132 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2021-02-12 01:48:48,133 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2021-02-12 01:48:48,144 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits 2021-02-12 01:48:48,144 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2021-02-12 01:48:48,206 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2021-02-12 01:48:48,206 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2021-02-12 01:48:48,206 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2021-02-12 01:48:48,206 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2021-02-12 01:48:48,206 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2021-02-12 01:48:49,495 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2021-02-12 01:48:49,496 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.531918 2021-02-12 01:48:49,515 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2021-02-12 01:48:49,606 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2021-02-12 01:48:49,607 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2021-02-12 01:48:49,622 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2021-02-12 01:48:53,728 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2021-02-12 01:48:55,899 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 2021-02-12 01:48:55,979 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrca5_i2d.fits 2021-02-12 01:48:55,979 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2021-02-12 01:48:55,979 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2021-02-12 01:48:55,980 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2021-02-12 01:48:56,121 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_cal.fits 2021-02-12 01:48:56,121 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_detector1.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_detector1.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-DETECTOR1PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-DETECTOR1PIPELINE reference files found. INFO stpipe.Detector1Pipeline:step.py:313 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:313 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:313 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:313 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:313 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:313 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:313 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:313 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:313 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:313 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:313 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:313 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:313 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:313 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:313 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:313 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:313 GainScaleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Detector1Pipeline:step.py:360 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:364 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe.Detector1Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.ramp.RampModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0016.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:326 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:66 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:66 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:99 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:99 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:360 Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:364 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:38 NFRAMES=1 is a power of 2; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:39 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:474 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:360 Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:364 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0038.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dq_init:dynamicdq.py:29 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.dq_init:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits INFO stpipe.Detector1Pipeline.dq_init:step.py:474 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:360 Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:364 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:29 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_saturation.fits INFO stpipe.Detector1Pipeline.saturation:step.py:474 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:360 Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:364 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:394 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:474 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:360 Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:364 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:29 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_superbias.fits INFO stpipe.Detector1Pipeline.superbias:step.py:474 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:360 Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:364 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_refpix.fits INFO stpipe.Detector1Pipeline.refpix:step.py:474 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:360 Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:364 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:24 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:29 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_linearity.fits INFO stpipe.Detector1Pipeline.linearity:step.py:474 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:360 Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:364 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:29 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:229 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:229 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:474 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:360 Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:364 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:29 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits INFO stpipe.Detector1Pipeline.dark_current:step.py:474 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:360 Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:364 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 200.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:47 CR rejection threshold = 50 sigma INFO stpipe.Detector1Pipeline.jump:jump_step.py:53 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.jump:jump_step.py:59 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:38 Found 32 possible cores to use for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:38 Found 32 possible cores to use for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.jump:jump.py:88 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:88 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:59 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:59 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:129 From highest outlier Two-point found 4713 pixels with at least one CR INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:129 From highest outlier Two-point found 4713 pixels with at least one CR INFO stpipe.Detector1Pipeline.jump:jump.py:151 Total elapsed time = 2.12814 sec INFO stpipe.Detector1Pipeline.jump:jump.py:151 Total elapsed time = 2.12814 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:72 The execution time in seconds: 5.806466 INFO stpipe.Detector1Pipeline.jump:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_jump.fits INFO stpipe.Detector1Pipeline.jump:step.py:474 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:360 Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:364 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:207 Max segments=5 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:207 Max segments=5 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:533 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:533 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3176 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3176 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3177 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3177 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3178 Count rates - min, mean, max, std: -169.330429, 0.390264, 1648.302368, 3.283592 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:3178 Count rates - min, mean, max, std: -169.330429, 0.390264, 1648.302368, 3.283592 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1076 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1076 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1077 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1077 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1078 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1078 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1079 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1079 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1080 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1080 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1081 Number of rows per buffer: 2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1081 Number of rows per buffer: 2048 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1082 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1082 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1083 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1083 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1084 The execution time in seconds: 22.511157 DEBUG stpipe.Detector1Pipeline.ramp_fit:ramp_fit.py:1084 The execution time in seconds: 22.511157 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:474 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:360 Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:364 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:474 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:360 Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:364 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:474 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:150 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:150 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_rate.fits INFO stpipe.Detector1Pipeline:step.py:474 Step Detector1Pipeline done DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:config_parser.py:145 Config file did not parse as ASDF. Trying as ConfigObj: config/calwebb_image2.cfg DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:194 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:205 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:219 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:313 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:313 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:313 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:313 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:313 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:313 ResampleStep instance created. INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:296 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe:cmdline.py:297 OS: Linux INFO stpipe.Image2Pipeline:step.py:360 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:364 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.Image2Pipeline:pipeline.py:318 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:326 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:47 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:56 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:123 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:463 Skipping FITS updating completely. INFO stpipe.Image2Pipeline.assign_wcs:step.py:360 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:364 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:util.py:934 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits INFO stpipe.Image2Pipeline.assign_wcs:step.py:474 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:360 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:364 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:114 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:167 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits INFO stpipe.Image2Pipeline.flat_field:step.py:474 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:360 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:364 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:140 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:141 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:142 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:144 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:146 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0071.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:188 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:923 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:945 PIXAR_SR = 9.30711286318865e-14, PIXAR_A2 = 0.0039597270172987 DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:504 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:photom.py:697 PHOTMJSR value: 0.531918 INFO stpipe.Image2Pipeline.photom:step.py:474 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:360 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:364 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'exptime', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:67 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:675 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:197 weight_type=exptime DEBUG stpipe.Image2Pipeline.resample:resample.py:76 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:76 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:437 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:404 Model size 16.4M available system memory 117.6G DEBUG stpipe.Image2Pipeline.resample:util.py:404 Model size 16.4M available system memory 117.6G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:70 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:413 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:414 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:415 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:424 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:util.py:934 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:474 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:162 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:78 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:897 Saved model in jw42424001001_01101_00001_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:474 Step Image2Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] | 3.14 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] | 3.81 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] | 3.48 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] | 3.56 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] | 0.83 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] | 3.39 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] | 2.95 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] | 0.91 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] | 0.95 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100736640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] | 1.06 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117518400 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] | 0.56 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 51537600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 51537600 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 51537600 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 51537600 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs | 6.29 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:689 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:463 Skipping FITS updating completely. DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:188 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog | 0.21 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 92590 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 92590 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 92590 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 92590 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt | 0.07 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 453 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 453 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 453 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 453 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.8/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot | 0.10 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:971 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:452 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 | |||